From 9e1016dd4fb41e1910eaf6e91a43f7a269f5d5ce Mon Sep 17 00:00:00 2001 From: mcktr Date: Fri, 26 May 2017 17:58:04 +0200 Subject: [PATCH] Fix missing apostrophe in notification log refs #5294 --- lib/icinga/notification.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/icinga/notification.cpp b/lib/icinga/notification.cpp index f8ac784f6..2dfb89541 100644 --- a/lib/icinga/notification.cpp +++ b/lib/icinga/notification.cpp @@ -414,7 +414,7 @@ void Notification::BeginExecuteNotification(NotificationType type, const CheckRe Log(LogInformation, "Notification") << "Sending " << (reminder ? "reminder " : "") << "'" << NotificationTypeToStringInternal(type) << "' notification '" - << GetName() << " for user '" << userName << "'"; + << GetName() << "' for user '" << userName << "'"; Utility::QueueAsyncCallback(boost::bind(&Notification::ExecuteNotificationHelper, this, type, user, cr, force, author, text));