Set log level debug

This commit is contained in:
Viktor Liu 2024-11-27 13:45:20 +01:00
parent 5c8bfb7cea
commit f30995707a

View File

@ -12,6 +12,12 @@ import (
)
func main() {
// only if env is not set
if os.Getenv("NB_LOG_LEVEL") == "" {
if err := os.Setenv("NB_LOG_LEVEL", "debug"); err != nil {
log.Errorf("Failed setting log-level: %v", err)
}
}
if err := os.Setenv("NB_LOG_MAX_SIZE_MB", "100"); err != nil {
log.Errorf("Failed setting log-size: %v", err)
}