summaryrefslogtreecommitdiffstats
path: root/api
diff options
context:
space:
mode:
authorCorey Hulen <corey@hulen.com>2016-12-16 05:01:15 -0800
committerJoram Wilander <jwawilander@gmail.com>2016-12-16 08:01:15 -0500
commit2e5ae55e691e6cd6395082b5cf74e0d5f1161c05 (patch)
tree1d90e31b28762228fbec7824db1f6bc9f184faa5 /api
parent7f48a7fc9d2238134414668e0b520115706b8b2d (diff)
downloadchat-2e5ae55e691e6cd6395082b5cf74e0d5f1161c05.tar.gz
chat-2e5ae55e691e6cd6395082b5cf74e0d5f1161c05.tar.bz2
chat-2e5ae55e691e6cd6395082b5cf74e0d5f1161c05.zip
PLT-4923 Changing missing license to info msg (#4810)
Diffstat (limited to 'api')
-rw-r--r--api/license.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/api/license.go b/api/license.go
index cff7d7515..0b186a59c 100644
--- a/api/license.go
+++ b/api/license.go
@@ -35,7 +35,7 @@ func LoadLicense() {
}
if len(licenseId) != 26 {
- l4g.Warn(utils.T("mattermost.load_license.find.warn"))
+ l4g.Info(utils.T("mattermost.load_license.find.warn"))
return
}
@@ -43,7 +43,7 @@ func LoadLicense() {
record := result.Data.(*model.LicenseRecord)
utils.LoadLicense([]byte(record.Bytes))
} else {
- l4g.Warn(utils.T("mattermost.load_license.find.warn"))
+ l4g.Info(utils.T("mattermost.load_license.find.warn"))
}
}