summaryrefslogtreecommitdiffstats
path: root/cmd
diff options
context:
space:
mode:
authorCarlos Tadeu Panato Junior <ctadeu@gmail.com>2018-09-17 09:29:04 +0200
committerGitHub <noreply@github.com>2018-09-17 09:29:04 +0200
commit35c148d2551bbb65a6d469b44876ba78578397c1 (patch)
treed206c1ae0771392cb4d4aa8452814178a8ad74d4 /cmd
parent4fb78176100680fd9c22f34aad5338a056106148 (diff)
downloadchat-35c148d2551bbb65a6d469b44876ba78578397c1.tar.gz
chat-35c148d2551bbb65a6d469b44876ba78578397c1.tar.bz2
chat-35c148d2551bbb65a6d469b44876ba78578397c1.zip
fixing log messages (#9341)
* fixing log messages * update per review * Update notification.go * Update server.go * Update notification.go
Diffstat (limited to 'cmd')
-rw-r--r--cmd/mattermost/commands/server.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/mattermost/commands/server.go b/cmd/mattermost/commands/server.go
index 0b7ef009c..95dc2f1c7 100644
--- a/cmd/mattermost/commands/server.go
+++ b/cmd/mattermost/commands/server.go
@@ -243,7 +243,7 @@ func runSessionCleanupJob(a *app.App) {
func resetStatuses(a *app.App) {
if result := <-a.Srv.Store.Status().ResetAll(); result.Err != nil {
- mlog.Error(fmt.Sprint("mattermost.reset_status.error FIXME: NOT FOUND IN TRANSLATIONS FILE", result.Err.Error()))
+ mlog.Error(fmt.Sprint("Error to reset the server status.", result.Err.Error()))
}
}