diff options
Diffstat (limited to 'routers/install.go')
-rw-r--r-- | routers/install.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/routers/install.go b/routers/install.go index 1344792661..28bca2b4f7 100644 --- a/routers/install.go +++ b/routers/install.go @@ -236,7 +236,7 @@ func InstallPost(ctx *context.Context, form auth.InstallForm) { if com.IsFile(setting.CustomConf) { // Keeps custom settings if there is already something. if err = cfg.Append(setting.CustomConf); err != nil { - log.Error(4, "Failed to load custom conf '%s': %v", setting.CustomConf, err) + log.Error("Failed to load custom conf '%s': %v", setting.CustomConf, err) } } cfg.Section("database").Key("DB_TYPE").SetValue(models.DbCfg.Type) |