From 553002e9d8de04377b823b8c58bb751e235f3c4f Mon Sep 17 00:00:00 2001 From: Adam Ierymenko Date: Wed, 11 Sep 2013 16:49:01 -0400 Subject: [PATCH] Reduce log noise, change to TRACE. --- node/PacketDecoder.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/node/PacketDecoder.cpp b/node/PacketDecoder.cpp index 9d8f0cd8d..13937a522 100644 --- a/node/PacketDecoder.cpp +++ b/node/PacketDecoder.cpp @@ -319,7 +319,7 @@ bool PacketDecoder::_doOK(const RuntimeEnvironment *_r,const SharedPtr &pe std::string dict((const char *)field(ZT_PROTO_VERB_NETWORK_CONFIG_REQUEST__OK__IDX_DICT,dictlen),dictlen); if (dict.length()) { Network::Config netconf(dict); - LOG("got network configuration for network %.16llx from %s",(unsigned long long)nw->id(),source().toString().c_str()); + TRACE("got network configuration for network %.16llx from %s",(unsigned long long)nw->id(),source().toString().c_str()); nw->setConfiguration(netconf); } }