From 8c8e80bbb01f0120c4fcd4e5d08b0863857b315f Mon Sep 17 00:00:00 2001 From: Michael Friedrich Date: Thu, 12 Feb 2015 14:51:17 +0100 Subject: [PATCH] Don't spam the log with reminder notifications not being sent fixes #7731 --- lib/notification/notificationcomponent.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/notification/notificationcomponent.cpp b/lib/notification/notificationcomponent.cpp index 67357f101..7b65a69cd 100644 --- a/lib/notification/notificationcomponent.cpp +++ b/lib/notification/notificationcomponent.cpp @@ -110,8 +110,8 @@ void NotificationComponent::NotificationTimerHandler(void) } try { - Log(LogInformation, "NotificationComponent") - << "Sending reminder notification for object '" << checkable->GetName() << "'"; + Log(LogNotice, "NotificationComponent") + << "Attempting to send reminder notification for object '" << checkable->GetName() << "'"; notification->BeginExecuteNotification(NotificationProblem, checkable->GetLastCheckResult(), false); } catch (const std::exception& ex) { Log(LogWarning, "NotificationComponent")