diff options
author | Grant Limberg <glimberg@gmail.com> | 2016-05-14 13:29:31 -0700 |
---|---|---|
committer | Grant Limberg <glimberg@gmail.com> | 2016-05-14 13:29:31 -0700 |
commit | de1b74598855e5251a2a236bb6b61825ecaf8a39 (patch) | |
tree | a80a31f548376bc651e22967c5ff4a313ceb7a5c | |
parent | efdbd6326fc06da6daca1c2969959de2b8f4d5b3 (diff) | |
download | infinitytier-de1b74598855e5251a2a236bb6b61825ecaf8a39.tar.gz infinitytier-de1b74598855e5251a2a236bb6b61825ecaf8a39.zip |
comment out a few TRACE messages that don't compile
-rw-r--r-- | node/IncomingPacket.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/node/IncomingPacket.cpp b/node/IncomingPacket.cpp index 84df7de3..9e0226b9 100644 --- a/node/IncomingPacket.cpp +++ b/node/IncomingPacket.cpp @@ -721,7 +721,7 @@ bool IncomingPacket::_doNETWORK_CONFIG_REQUEST(const RuntimeEnvironment *RR,cons outp.compress(); outp.armor(peer->key(),true); if (outp.size() > ZT_PROTO_MAX_PACKET_LENGTH) { // sanity check - TRACE("NETWORK_CONFIG_REQUEST failed: internal error: netconf size %u is too large",(unsigned int)netconfStr.length()); + //TRACE("NETWORK_CONFIG_REQUEST failed: internal error: netconf size %u is too large",(unsigned int)netconfStr.length()); } else { RR->node->putPacket(_localAddress,_remoteAddress,outp.data(),outp.size()); } @@ -748,7 +748,7 @@ bool IncomingPacket::_doNETWORK_CONFIG_REQUEST(const RuntimeEnvironment *RR,cons } break; case NetworkController::NETCONF_QUERY_INTERNAL_SERVER_ERROR: - TRACE("NETWORK_CONFIG_REQUEST failed: internal error: %s",netconf.get("error","(unknown)").c_str()); + // TRACE("NETWORK_CONFIG_REQUEST failed: internal error: %s",netconf.get("error","(unknown)").c_str()); break; case NetworkController::NETCONF_QUERY_IGNORE: |