From f4ab0737d127284dae76483c7c4b0638e4a5f01d Mon Sep 17 00:00:00 2001 From: "Alexander A. Klimov" Date: Mon, 7 Jan 2019 15:32:19 +0100 Subject: [PATCH] HttpServerConnection#DataAvailableHandler(): reduce log spam --- lib/remote/httpserverconnection.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/remote/httpserverconnection.cpp b/lib/remote/httpserverconnection.cpp index 83548d359..4f1a50cae 100644 --- a/lib/remote/httpserverconnection.cpp +++ b/lib/remote/httpserverconnection.cpp @@ -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; }