livestatus: make query exceptions debug only

fixes #4405
This commit is contained in:
Michael Friedrich 2013-07-29 11:22:56 +02:00
parent 5167626c92
commit 2106322388
1 changed files with 1 additions and 1 deletions

View File

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