1
0
mirror of https://github.com/Icinga/icinga2.git synced 2025-04-08 17:05:25 +02:00

livestatus: make query exceptions debug only

fixes 
This commit is contained in:
Michael Friedrich 2013-07-29 11:22:56 +02:00
parent 5167626c92
commit 2106322388

@ -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));
}