From d8e3cb1217d8c3fe63100ecdd04bf2640fcbd47e Mon Sep 17 00:00:00 2001 From: JoelKatz Date: Wed, 20 Mar 2013 02:01:33 -0700 Subject: [PATCH] Log when we attempt a connection. --- src/cpp/ripple/ConnectionPool.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cpp/ripple/ConnectionPool.cpp b/src/cpp/ripple/ConnectionPool.cpp index d17f38885..8faacaff1 100644 --- a/src/cpp/ripple/ConnectionPool.cpp +++ b/src/cpp/ripple/ConnectionPool.cpp @@ -319,7 +319,7 @@ Peer::pointer ConnectionPool::peerConnect(const std::string& strIp, int iPort) if (ppResult) { ppResult->connect(strIp, iPort); - cLog(lsTRACE) << "Pool: Connecting: " << ADDRESS_SHARED(ppResult) << ": " << strIp << " " << iPort; + cLog(lsDEBUG) << "Pool: Connecting: " << strIp << " " << iPort; } else {