dependencies enforced, send que error message log level moved

This commit is contained in:
Riccardo Spagni 2014-09-29 20:13:15 +02:00
parent 59a8366bb1
commit 99945a5c47
No known key found for this signature in database
GPG key ID: 55432DF31CCD4FCD
4 changed files with 25 additions and 12 deletions

View file

@ -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;
}