diff --git a/config.go b/config.go index dd0a9212..acd72c70 100644 --- a/config.go +++ b/config.go @@ -134,10 +134,8 @@ func parseAndSetDebugLevels(debugLevel string) error { return fmt.Errorf(str, debugLevel) } - // Change the logging level for all subsystems if needed. - if debugLevel != defaultLogLevel { - setLogLevels(debugLevel) - } + // Change the logging level for all subsystems. + setLogLevels(debugLevel) return nil }