From 2f2d2847b345dc5bf41b4db130e4aa75f85ef505 Mon Sep 17 00:00:00 2001 From: Jeff Becker Date: Wed, 14 Nov 2018 16:59:27 -0500 Subject: [PATCH] debug logging --- llarp/transit_hop.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/llarp/transit_hop.cpp b/llarp/transit_hop.cpp index 5bff57af1..c4fd7c9dd 100644 --- a/llarp/transit_hop.cpp +++ b/llarp/transit_hop.cpp @@ -257,6 +257,7 @@ namespace llarp auto endpoint = r->exitContext.FindEndpointForPath(info.rxID); if(endpoint && msg->Verify(&r->crypto, endpoint->PubKey())) { + llarp::LogInfo("exit traffic"); if(endpoint->SendOutboundTraffic(llarp::ConstBuffer(msg->X))) return true; }