From 83f07c7ee2624b227f42120642167cc9fe43ec6b Mon Sep 17 00:00:00 2001 From: Michael Friedrich Date: Wed, 3 Aug 2016 17:32:55 +0200 Subject: [PATCH] Add the notification type into the log message fixes #12304 --- lib/icinga/notification.cpp | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/lib/icinga/notification.cpp b/lib/icinga/notification.cpp index d9897760c..41a6cf45f 100644 --- a/lib/icinga/notification.cpp +++ b/lib/icinga/notification.cpp @@ -397,7 +397,8 @@ void Notification::BeginExecuteNotification(NotificationType type, const CheckRe } Log(LogInformation, "Notification") - << "Sending notification '" << GetName() << "' for user '" << userName << "'"; + << "Sending '" << NotificationTypeToStringInternal(type) << "' notification '" + << GetName() << " for user '" << userName << "'"; Utility::QueueAsyncCallback(boost::bind(&Notification::ExecuteNotificationHelper, this, type, user, cr, force, author, text)); @@ -500,7 +501,8 @@ void Notification::ExecuteNotificationHelper(NotificationType type, const User:: Service::OnNotificationSentToUser(this, GetCheckable(), user, type, cr, author, text, command->GetName(), MessageOrigin::Ptr()); Log(LogInformation, "Notification") - << "Completed sending notification '" << GetName() + << "Completed sending '" << NotificationTypeToStringInternal(type) + << "' notification '" << GetName() << "' for checkable '" << GetCheckable()->GetName() << "' and user '" << user->GetName() << "'."; } catch (const std::exception& ex) { -- 2.40.0