Restore pretty formatted config options in debug level

This commit is contained in:
Deluan 2021-05-12 14:43:09 -04:00
parent 751e2d6147
commit 39d68e8287
5 changed files with 61 additions and 23 deletions

View file

@ -115,7 +115,9 @@ func Load() {
os.Exit(1)
}
log.Debug(pretty.Sprintf("Loaded configuration from '%s': %# v\n", Server.ConfigFile, Server))
if log.CurrentLevel() >= log.LevelDebug {
fmt.Println(log.Redact(pretty.Sprintf("Loaded configuration from '%s': %# v", Server.ConfigFile, Server)))
}
// Call init hooks
for _, hook := range hooks {