debug logging

This commit is contained in:
Jeff Becker 2018-11-14 16:59:27 -05:00
parent 1a410c4b22
commit 2f2d2847b3
No known key found for this signature in database
GPG Key ID: F357B3B42F6F9B05

View File

@ -257,6 +257,7 @@ namespace llarp
auto endpoint = r->exitContext.FindEndpointForPath(info.rxID); auto endpoint = r->exitContext.FindEndpointForPath(info.rxID);
if(endpoint && msg->Verify(&r->crypto, endpoint->PubKey())) if(endpoint && msg->Verify(&r->crypto, endpoint->PubKey()))
{ {
llarp::LogInfo("exit traffic");
if(endpoint->SendOutboundTraffic(llarp::ConstBuffer(msg->X))) if(endpoint->SendOutboundTraffic(llarp::ConstBuffer(msg->X)))
return true; return true;
} }