chore: change default log level to info

This commit is contained in:
Gabe Farrell 2025-06-11 22:04:12 -04:00
parent 83eeff446a
commit 20cc4ce27a

View file

@ -144,7 +144,7 @@ func loadConfig(getenv func(string) string) (*config, error) {
case "fatal":
cfg.logLevel = 4
default:
cfg.logLevel = 0
cfg.logLevel = 1
}
return cfg, nil
}