diff options
author | luigi1111 <luigi1111w@gmail.com> | 2019-10-22 10:23:04 -0500 |
---|---|---|
committer | luigi1111 <luigi1111w@gmail.com> | 2019-10-22 10:23:04 -0500 |
commit | 18f62f89d89614b40c571696e4376d39d54afb10 (patch) | |
tree | 71ba3a509fa73f67e5cfc7219fcb65df474d25e8 | |
parent | Merge pull request #5985 (diff) | |
parent | abstract_tcp_server2: move "Trying to connect" from error to debug (diff) | |
download | monero-18f62f89d89614b40c571696e4376d39d54afb10.tar.xz |
Merge pull request #5986
1080136 abstract_tcp_server2: move 'Trying to connect' from error to debug (moneromooo-monero)
-rw-r--r-- | contrib/epee/include/net/abstract_tcp_server2.inl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/epee/include/net/abstract_tcp_server2.inl b/contrib/epee/include/net/abstract_tcp_server2.inl index c52535dcd..e1777b1c4 100644 --- a/contrib/epee/include/net/abstract_tcp_server2.inl +++ b/contrib/epee/include/net/abstract_tcp_server2.inl @@ -1522,7 +1522,7 @@ POP_WARNINGS } - LOG_ERROR("Trying connect to " << adr << ":" << port << ", bind_ip = " << bind_ip_to_use); + MDEBUG("Trying to connect to " << adr << ":" << port << ", bind_ip = " << bind_ip_to_use); //boost::asio::ip::tcp::endpoint remote_endpoint(boost::asio::ip::address::from_string(addr.c_str()), port); boost::asio::ip::tcp::endpoint remote_endpoint(*iterator); |