From 832b5bed2a783aabf92356f2bb7fa99a867c12a4 Mon Sep 17 00:00:00 2001 From: Michael Friedrich Date: Tue, 16 Aug 2016 13:47:48 +0200 Subject: [PATCH] Remove debug output in NotificationComponent refs #12402 --- lib/notification/notificationcomponent.cpp | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/lib/notification/notificationcomponent.cpp b/lib/notification/notificationcomponent.cpp index 5a8167b1c..69d227fc1 100644 --- a/lib/notification/notificationcomponent.cpp +++ b/lib/notification/notificationcomponent.cpp @@ -83,11 +83,8 @@ void NotificationComponent::NotificationTimerHandler(void) if (!IcingaApplication::GetInstance()->GetEnableNotifications() || !checkable->GetEnableNotifications()) continue; - if (notification->GetInterval() <= 0 && notification->GetNoMoreNotifications()) { - Log(LogDebug, "NotificationComponent") - << "Skipping reminder notification '" << notification->GetName() << "'. Interval is 0 and no more notifications are required."; + if (notification->GetInterval() <= 0 && notification->GetNoMoreNotifications()) continue; - } if (notification->GetNextNotification() > now) continue;