From 0c7261b157ac0b28376657c8c3c043f89788643d Mon Sep 17 00:00:00 2001 From: Eli Young Date: Wed, 24 Feb 2021 23:34:44 -0800 Subject: [PATCH] Log intentionally unsent notifications as DEBUG (#16997) --- app/notification.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/notification.go b/app/notification.go index ad6c52183a..00702ca306 100644 --- a/app/notification.go +++ b/app/notification.go @@ -348,7 +348,7 @@ func (a *App) SendNotifications(post *model.Post, team *model.Team, channel *mod ) } else { // register that a notification was not sent - a.NotificationsLog().Warn("Notification not sent", + a.NotificationsLog().Debug("Notification not sent", mlog.String("ackId", ""), mlog.String("type", model.PUSH_TYPE_MESSAGE), mlog.String("userId", id), @@ -380,7 +380,7 @@ func (a *App) SendNotifications(post *model.Post, team *model.Team, channel *mod ) } else { // register that a notification was not sent - a.NotificationsLog().Warn("Notification not sent", + a.NotificationsLog().Debug("Notification not sent", mlog.String("ackId", ""), mlog.String("type", model.PUSH_TYPE_MESSAGE), mlog.String("userId", id),