mirror of https://github.com/Icinga/icinga2.git
Don't spam the log with reminder notifications not being sent
fixes #7731
This commit is contained in:
parent
1c4501da19
commit
8c8e80bbb0
|
@ -110,8 +110,8 @@ void NotificationComponent::NotificationTimerHandler(void)
|
||||||
}
|
}
|
||||||
|
|
||||||
try {
|
try {
|
||||||
Log(LogInformation, "NotificationComponent")
|
Log(LogNotice, "NotificationComponent")
|
||||||
<< "Sending reminder notification for object '" << checkable->GetName() << "'";
|
<< "Attempting to send reminder notification for object '" << checkable->GetName() << "'";
|
||||||
notification->BeginExecuteNotification(NotificationProblem, checkable->GetLastCheckResult(), false);
|
notification->BeginExecuteNotification(NotificationProblem, checkable->GetLastCheckResult(), false);
|
||||||
} catch (const std::exception& ex) {
|
} catch (const std::exception& ex) {
|
||||||
Log(LogWarning, "NotificationComponent")
|
Log(LogWarning, "NotificationComponent")
|
||||||
|
|
Loading…
Reference in New Issue