summaryrefslogtreecommitdiffstats
path: root/app/email_batching.go
diff options
context:
space:
mode:
Diffstat (limited to 'app/email_batching.go')
-rw-r--r--app/email_batching.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/email_batching.go b/app/email_batching.go
index e75979bca..aad1eb8cb 100644
--- a/app/email_batching.go
+++ b/app/email_batching.go
@@ -198,7 +198,7 @@ func (a *App) sendBatchedEmailNotification(userId string, notifications []*batch
var user *model.User
if result := <-uchan; result.Err != nil {
- mlog.Warn("api.email_batching.send_batched_email_notification.user.app_error")
+ mlog.Warn("Unable to find recipient for batched email notification")
return
} else {
user = result.Data.(*model.User)