summaryrefslogtreecommitdiffstats
path: root/store/sqlstore/supplier.go
diff options
context:
space:
mode:
authorChristopher Speller <crspeller@gmail.com>2018-04-27 13:31:50 -0700
committerGitHub <noreply@github.com>2018-04-27 13:31:50 -0700
commit2e6b3da1d3466db379fef0d61a23e2878d17ee9d (patch)
treeff739774e14e1747fe01a265d360f599ffc21bde /store/sqlstore/supplier.go
parent686c2fbab7607d42183ae685a27ea3d7dce8c3f6 (diff)
downloadchat-2e6b3da1d3466db379fef0d61a23e2878d17ee9d.tar.gz
chat-2e6b3da1d3466db379fef0d61a23e2878d17ee9d.tar.bz2
chat-2e6b3da1d3466db379fef0d61a23e2878d17ee9d.zip
Fixing some merge conflicts with structured logging. (#8685)
Diffstat (limited to 'store/sqlstore/supplier.go')
-rw-r--r--store/sqlstore/supplier.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/store/sqlstore/supplier.go b/store/sqlstore/supplier.go
index 69b30be59..0b02d9d47 100644
--- a/store/sqlstore/supplier.go
+++ b/store/sqlstore/supplier.go
@@ -374,7 +374,7 @@ func (ss *SqlSupplier) DoesTableExist(tableName string) bool {
)
if err != nil {
- l4g.Critical(utils.T("store.sql.table_exists.critical"), err)
+ mlog.Critical(fmt.Sprintf("Failed to check if table exists %v", err))
time.Sleep(time.Second)
os.Exit(EXIT_TABLE_EXISTS_SQLITE)
}
@@ -444,7 +444,7 @@ func (ss *SqlSupplier) DoesColumnExist(tableName string, columnName string) bool
)
if err != nil {
- l4g.Critical(utils.T("store.sql.column_exists.critical"), err)
+ mlog.Critical(fmt.Sprintf("Failed to check if column exists %v", err))
time.Sleep(time.Second)
os.Exit(EXIT_DOES_COLUMN_EXISTS_SQLITE)
}