diff options
author | Riccardo Spagni <ric@spagni.net> | 2014-09-29 20:13:15 +0200 |
---|---|---|
committer | Riccardo Spagni <ric@spagni.net> | 2014-09-29 20:13:15 +0200 |
commit | 99945a5c47feabb9347fa41f63746c221c138eaa (patch) | |
tree | 6541ce3b1d0a2e09248e65baea2407cf44e6ac05 /contrib | |
parent | Revert "low risk, potentially varint overflow bug patched thanks to BBR" (diff) | |
download | monero-99945a5c47feabb9347fa41f63746c221c138eaa.tar.xz |
dependencies enforced, send que error message log level moved
Diffstat (limited to 'contrib')
-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 4b4189eb4..db3f9e322 100644 --- a/contrib/epee/include/net/abstract_tcp_server2.inl +++ b/contrib/epee/include/net/abstract_tcp_server2.inl @@ -304,7 +304,7 @@ PRAGMA_WARNING_DISABLE_VS(4355) if(m_send_que.size() > ABSTRACT_SERVER_SEND_QUE_MAX_COUNT) { send_guard.unlock(); - LOG_ERROR("send que size is more than ABSTRACT_SERVER_SEND_QUE_MAX_COUNT(" << ABSTRACT_SERVER_SEND_QUE_MAX_COUNT << "), shutting down connection"); + LOG_PRINT_L2("send que size is more than ABSTRACT_SERVER_SEND_QUE_MAX_COUNT(" << ABSTRACT_SERVER_SEND_QUE_MAX_COUNT << "), shutting down connection"); close(); return false; } |