From 10fc164fcbdeb678e224019d860738d016b6f030 Mon Sep 17 00:00:00 2001 From: Adam Ierymenko Date: Tue, 23 Jul 2013 17:21:34 -0700 Subject: [PATCH] More trace output to debug control bus. --- node/NodeConfig.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/node/NodeConfig.cpp b/node/NodeConfig.cpp index 849d73fca..925b056ba 100644 --- a/node/NodeConfig.cpp +++ b/node/NodeConfig.cpp @@ -236,7 +236,9 @@ void NodeConfig::_CBcontrolPacketHandler(UdpSocket *sock,void *arg,const InetAdd for(std::vector< Buffer >::iterator p(resultPackets.begin());p!=resultPackets.end();++p) sock->send(remoteAddr,p->data(),p->size(),-1); } - } catch ( ... ) {} + } catch ( ... ) { + TRACE("exception handling control bus packet from %s",remoteAddr.toString.c_str()); + } } } // namespace ZeroTier