summaryrefslogtreecommitdiffstats
path: root/app/email_batching.go
diff options
context:
space:
mode:
authorHarrison Healey <harrisonmhealey@gmail.com>2018-05-04 16:11:15 -0400
committerDerrick Anderson <derrick@andersonwebstudio.com>2018-05-04 16:11:15 -0400
commitfc513a9e61605a947c2bb8552eb7abfcecc729c1 (patch)
tree192e59342f7f72d5ce8a8e20954b585c4686e790 /app/email_batching.go
parent7c680cacab49370b5e46dc7dc66492158eb0aa08 (diff)
downloadchat-fc513a9e61605a947c2bb8552eb7abfcecc729c1.tar.gz
chat-fc513a9e61605a947c2bb8552eb7abfcecc729c1.tar.bz2
chat-fc513a9e61605a947c2bb8552eb7abfcecc729c1.zip
Added missing i18n strings for files and email batching (#8700)
* Added missing i18n strings for files and email batching * Added more fields to log messages
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 e1ea7abb5..e75979bca 100644
--- a/app/email_batching.go
+++ b/app/email_batching.go
@@ -250,7 +250,7 @@ func (a *App) sendBatchedEmailNotification(userId string, notifications []*batch
body.Props["BodyText"] = translateFunc("api.email_batching.send_batched_email_notification.body_text", len(notifications))
if err := a.SendMail(user.Email, subject, body.Render()); err != nil {
- mlog.Warn(fmt.Sprint("api.email_batchings.send_batched_email_notification.send.app_error FIXME: NOT FOUND IN TRANSLATIONS FILE", user.Email, err))
+ mlog.Warn(fmt.Sprintf("Unable to send batched email notification err=%v", err), mlog.String("email", user.Email))
}
}