From 57edc3155fa910729bee912d637ad2fd77cb2bba Mon Sep 17 00:00:00 2001 From: Piotr Orzechowski Date: Fri, 1 Dec 2017 08:41:27 +0100 Subject: [PATCH] Default log level to Info without hardcoding it in installer (#3041) --- modules/setting/setting.go | 17 +++++++++-------- routers/install.go | 2 +- 2 files changed, 10 insertions(+), 9 deletions(-) diff --git a/modules/setting/setting.go b/modules/setting/setting.go index 9bb7da445..db6f749c0 100644 --- a/modules/setting/setting.go +++ b/modules/setting/setting.go @@ -331,6 +331,7 @@ var ( LibravatarService *libravatar.Libravatar // Log settings + LogLevel string LogRootPath string LogModes []string LogConfigs []string @@ -659,6 +660,7 @@ func NewContext() { } homeDir = strings.Replace(homeDir, "\\", "/", -1) + LogLevel = getLogLevel("log", "LEVEL", "Info") LogRootPath = Cfg.Section("log").Key("ROOT_PATH").MustString(path.Join(AppWorkPath, "log")) forcePathSeparator(LogRootPath) @@ -1192,6 +1194,11 @@ var logLevels = map[string]string{ "Critical": "5", } +func getLogLevel(section string, key string, defaultValue string) string { + validLevels := []string{"Trace", "Debug", "Info", "Warn", "Error", "Critical"} + return Cfg.Section(section).Key(key).In(defaultValue, validLevels) +} + func newLogService() { log.Info("Gitea v%s%s", AppVer, AppBuiltWith) @@ -1216,11 +1223,8 @@ func newLogService() { sec, _ = Cfg.NewSection("log." + mode) } - validLevels := []string{"Trace", "Debug", "Info", "Warn", "Error", "Critical"} // Log level. - levelName := Cfg.Section("log."+mode).Key("LEVEL").In( - Cfg.Section("log").Key("LEVEL").In("Trace", validLevels), - validLevels) + levelName := getLogLevel("log."+mode, "LEVEL", LogLevel) level, ok := logLevels[levelName] if !ok { log.Fatal(4, "Unknown log level: %s", levelName) @@ -1284,11 +1288,8 @@ func NewXORMLogService(disableConsole bool) { sec, _ = Cfg.NewSection("log." + mode) } - validLevels := []string{"Trace", "Debug", "Info", "Warn", "Error", "Critical"} // Log level. - levelName := Cfg.Section("log."+mode).Key("LEVEL").In( - Cfg.Section("log").Key("LEVEL").In("Trace", validLevels), - validLevels) + levelName := getLogLevel("log."+mode, "LEVEL", LogLevel) level, ok := logLevels[levelName] if !ok { log.Fatal(4, "Unknown log level: %s", levelName) diff --git a/routers/install.go b/routers/install.go index e832f9873..df65d4fab 100644 --- a/routers/install.go +++ b/routers/install.go @@ -310,7 +310,7 @@ func InstallPost(ctx *context.Context, form auth.InstallForm) { cfg.Section("session").Key("PROVIDER").SetValue("file") cfg.Section("log").Key("MODE").SetValue("file") - cfg.Section("log").Key("LEVEL").SetValue("Info") + cfg.Section("log").Key("LEVEL").SetValue(setting.LogLevel) cfg.Section("log").Key("ROOT_PATH").SetValue(form.LogRootPath) cfg.Section("security").Key("INSTALL_LOCK").SetValue("true")