mirror of
https://github.com/Icinga/icinga2.git
synced 2025-07-24 06:05:01 +02:00
Add a debug log message for updating the program status table in DB IDO
fixes #10379
This commit is contained in:
parent
d85ba84a9a
commit
48753cb062
@ -121,6 +121,9 @@ void DbConnection::InsertRuntimeVariable(const String& key, const Value& value)
|
|||||||
|
|
||||||
void DbConnection::ProgramStatusHandler(void)
|
void DbConnection::ProgramStatusHandler(void)
|
||||||
{
|
{
|
||||||
|
Log(LogNotice, "DbConnection")
|
||||||
|
<< "Updating programstatus table.";
|
||||||
|
|
||||||
DbQuery query1;
|
DbQuery query1;
|
||||||
query1.Table = "programstatus";
|
query1.Table = "programstatus";
|
||||||
query1.Type = DbQueryDelete;
|
query1.Type = DbQueryDelete;
|
||||||
|
@ -1316,7 +1316,7 @@ void DbEvents::AddCheckableCheckHistory(const Checkable::Ptr& checkable, const C
|
|||||||
return;
|
return;
|
||||||
|
|
||||||
Log(LogDebug, "DbEvents")
|
Log(LogDebug, "DbEvents")
|
||||||
<< "add service check history for '" << checkable->GetName() << "'";
|
<< "add checkable check history for '" << checkable->GetName() << "'";
|
||||||
|
|
||||||
Host::Ptr host;
|
Host::Ptr host;
|
||||||
Service::Ptr service;
|
Service::Ptr service;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user