Disable debug logging

This commit is contained in:
Wim Brand
2018-01-22 10:13:18 +01:00
parent c4443399e7
commit e4449f1053

View File

@@ -64,6 +64,12 @@ func Init() {
log.Info("├%21s: %v", v, vi.Get(v))
}
}
if DebugMode() {
log.SetLogLevel(4)
} else {
log.SetLogLevel(3)
}
}
func writeCfg() {