HttpServerConnection#DataAvailableHandler(): reduce log spam

(cherry picked from commit f4ab0737d1)
This commit is contained in:
Alexander A. Klimov 2019-01-07 15:32:19 +01:00 committed by Michael Friedrich
parent de21dc3909
commit 8702ee7dc2
1 changed files with 1 additions and 1 deletions

View File

@ -353,7 +353,7 @@ void HttpServerConnection::DataAvailableHandler()
if (!m_Stream->IsEof()) {
boost::recursive_mutex::scoped_try_lock lock(m_DataHandlerMutex);
if (!lock.owns_lock()) {
Log(LogInformation, "HttpServerConnection", "Unable to process available data, they're already being processed in another thread");
Log(LogNotice, "HttpServerConnection", "Unable to process available data, they're already being processed in another thread");
return;
}