]> granicus.if.org Git - icinga2/commitdiff
HttpServerConnection#DataAvailableHandler(): reduce log spam
authorAlexander A. Klimov <alexander.klimov@icinga.com>
Mon, 7 Jan 2019 14:32:19 +0000 (15:32 +0100)
committerMichael Friedrich <michael.friedrich@icinga.com>
Thu, 28 Mar 2019 08:44:38 +0000 (09:44 +0100)
(cherry picked from commit f4ab0737d127284dae76483c7c4b0638e4a5f01d)

lib/remote/httpserverconnection.cpp

index c0550bfaeafa2a58d892a34b495dfe31f8eea770..dc4637dd854dd08733e3bb457a48694e8f20ca86 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;
                }