]> granicus.if.org Git - icinga2/commitdiff
HttpServerConnection#DataAvailableHandler(): reduce log spam 6877/head
authorAlexander A. Klimov <alexander.klimov@icinga.com>
Mon, 7 Jan 2019 14:32:19 +0000 (15:32 +0100)
committerAlexander A. Klimov <alexander.klimov@icinga.com>
Mon, 7 Jan 2019 14:32:19 +0000 (15:32 +0100)
lib/remote/httpserverconnection.cpp

index 83548d3590d1188d3f0085f4b02bd6796d1e2d88..4f1a50cae01b3f25ecb3bd50183ee46ad2af9237 100644 (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;
                }