From: Michael Friedrich Date: Mon, 29 Jul 2013 09:22:56 +0000 (+0200) Subject: livestatus: make query exceptions debug only X-Git-Tag: v0.0.3~787 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=2106322388ee9a08418b28d46ec316ac2fef4d92;p=icinga2 livestatus: make query exceptions debug only fixes #4405 --- diff --git a/components/livestatus/query.cpp b/components/livestatus/query.cpp index 3d59bcda0..6333691b8 100644 --- a/components/livestatus/query.cpp +++ b/components/livestatus/query.cpp @@ -445,7 +445,7 @@ bool Query::Execute(const Stream::Ptr& stream) StackTrace *st = Exception::GetLastStackTrace(); std::ostringstream info; st->Print(info); - Log(LogWarning, "livestatus", info.str()); + Log(LogDebug, "livestatus", info.str()); SendResponse(stream, LivestatusErrorQuery, boost::diagnostic_information(ex)); }