* fixing log messages

* update per review

* Update notification.go

* Update server.go

* Update notification.go
Этот коммит содержится в:
Carlos Tadeu Panato Junior
2018-09-17 09:29:04 +02:00
коммит произвёл GitHub
родитель 4fb7817610
Коммит 35c148d255
4 изменённых файлов: 6 добавлений и 6 удалений

Просмотреть файл

@@ -89,7 +89,7 @@ func (a *App) sendNotificationEmail(post *model.Post, user *model.User, channel
a.Go(func() {
if err := a.SendMail(user.Email, html.UnescapeString(subjectText), bodyText); err != nil {
mlog.Error(fmt.Sprint("api.post.send_notifications_and_forget.send.error FIXME: NOT FOUND IN TRANSLATIONS FILE", user.Email, err))
mlog.Error(fmt.Sprint("Error to send the email", user.Email, err))
}
})