diff options
author | Florent Le Coz <louiz@louiz.org> | 2014-04-15 06:42:00 +0200 |
---|---|---|
committer | Florent Le Coz <louiz@louiz.org> | 2014-04-15 06:42:00 +0200 |
commit | f7b75d7eb4a52ac58a213e98e300f66850e32e82 (patch) | |
tree | d1d4a7be8dc68f819ee559189ee6a5bc32ddab1a | |
parent | 996a827a5231464eb4d31d78b56ed4054ab0f4a8 (diff) | |
download | biboumi-f7b75d7eb4a52ac58a213e98e300f66850e32e82.tar.gz biboumi-f7b75d7eb4a52ac58a213e98e300f66850e32e82.tar.bz2 biboumi-f7b75d7eb4a52ac58a213e98e300f66850e32e82.tar.xz biboumi-f7b75d7eb4a52ac58a213e98e300f66850e32e82.zip |
Remove a useless debug log line
-rw-r--r-- | src/network/socket_handler.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/network/socket_handler.cpp b/src/network/socket_handler.cpp index 6f91e74..74446d9 100644 --- a/src/network/socket_handler.cpp +++ b/src/network/socket_handler.cpp @@ -113,7 +113,6 @@ void SocketHandler::connect(const std::string& address, const std::string& port) else if (errno == EINPROGRESS || errno == EALREADY) { // retry this process later, when the socket // is ready to be written on. - log_debug("Need to retry connecting later..." << strerror(errno)); this->poller->watch_send_events(this); // Save the addrinfo structure, to use it on the next call this->ai_addrlen = rp->ai_addrlen; |