diff options
author | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2019-10-14 14:12:18 +0000 |
---|---|---|
committer | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2019-10-14 14:15:21 +0000 |
commit | 10801362f48245e23388ce5cf07f4aa712667416 (patch) | |
tree | 7729da9b15a200926b472bec1251c8403ae8b3c5 | |
parent | Merge pull request #5978 (diff) | |
download | monero-10801362f48245e23388ce5cf07f4aa712667416.tar.xz |
abstract_tcp_server2: move "Trying to connect" from error to debug
and fix the message grammar
-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 e455d0204..8e9b71224 100644 --- a/contrib/epee/include/net/abstract_tcp_server2.inl +++ b/contrib/epee/include/net/abstract_tcp_server2.inl @@ -1524,7 +1524,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); |