mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-03 20:47:35 +03:00
Reduce log level of config file being used
This commit is contained in:
parent
cc1205c79d
commit
4b70cc52d6
1 changed files with 4 additions and 4 deletions
|
@ -56,10 +56,10 @@ func configFile() string {
|
|||
if err := d.Load(conf); err != nil {
|
||||
return consts.LocalConfigFile
|
||||
}
|
||||
if _, err := os.Stat(conf.ConfigFile); err == nil {
|
||||
return conf.ConfigFile
|
||||
if _, err := os.Stat(conf.ConfigFile); err != nil {
|
||||
return consts.LocalConfigFile
|
||||
}
|
||||
return consts.LocalConfigFile
|
||||
return conf.ConfigFile
|
||||
}
|
||||
|
||||
func newWithPath(path string, skipFlags ...bool) *multiconfig.DefaultLoader {
|
||||
|
@ -115,7 +115,7 @@ func LoadFromFile(confFile string, skipFlags ...bool) {
|
|||
}
|
||||
log.SetLevelString(Server.LogLevel)
|
||||
log.SetLogSourceLine(Server.DevLogSourceLine)
|
||||
log.Trace("Loaded configuration", "file", confFile, "config", fmt.Sprintf("%#v", Server))
|
||||
log.Debug("Loaded configuration", "file", confFile, "config", fmt.Sprintf("%#v", Server))
|
||||
}
|
||||
|
||||
func Load() {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue