diff options
author | Adam Ierymenko <adam.ierymenko@zerotier.com> | 2014-03-27 18:57:20 -0700 |
---|---|---|
committer | Adam Ierymenko <adam.ierymenko@zerotier.com> | 2014-03-27 18:57:20 -0700 |
commit | 9c68a343f600f92019561662d41a5261728bc698 (patch) | |
tree | 51b76ffc9711ce21d33424dc89791b2c030e3b73 /node | |
parent | 881ff08269cae26534a04566cffe4dc2a873ca88 (diff) | |
download | infinitytier-9c68a343f600f92019561662d41a5261728bc698.tar.gz infinitytier-9c68a343f600f92019561662d41a5261728bc698.zip |
Reduce some TRACE noise.
Diffstat (limited to 'node')
-rw-r--r-- | node/Peer.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/node/Peer.cpp b/node/Peer.cpp index fa8ab3e8..a0b53276 100644 --- a/node/Peer.cpp +++ b/node/Peer.cpp @@ -112,7 +112,7 @@ bool Peer::send(const RuntimeEnvironment *_r,const void *data,unsigned int len,u std::vector<Path>::iterator p(_paths.begin()); if (p == _paths.end()) { - TRACE("send to %s failed: no paths available",_id.address().toString().c_str()); + //TRACE("send to %s failed: no paths available",_id.address().toString().c_str()); return false; } uint64_t bestPathLastReceived = p->lastReceived(); @@ -125,7 +125,7 @@ bool Peer::send(const RuntimeEnvironment *_r,const void *data,unsigned int len,u } } - TRACE("send to %s: using path: %s",_id.address().toString().c_str(),bestPath->toString().c_str()); + //TRACE("send to %s: using path: %s",_id.address().toString().c_str(),bestPath->toString().c_str()); if (_r->sm->send(bestPath->address(),bestPath->tcp(),data,len)) { bestPath->sent(now); |