Merge pull request #5295 from mcktr/fix/missing-apostrophe-in-notification-log

Fix missing apostrophe in notification log

fixes #5294
fixes #5295
This commit is contained in:
Gunnar Beutner 2017-05-29 07:52:16 +02:00 committed by GitHub
commit a5f46e13eb
1 changed files with 1 additions and 1 deletions

View File

@ -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));