Parcourir la source

Always set root logging level, whether using logfile or not.

Steve Thielemann il y a 5 ans
Parent
commit
1d900e388f
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  1. 1 1
      config.py

+ 1 - 1
config.py

@@ -34,8 +34,8 @@ if 'logfile' in config and config['logfile']:
     fhlog.setFormatter( formatter )
     fhlog.setLevel( level )
     root.addHandler(fhlog)
-    root.setLevel(level)
 
+root.setLevel(level)
 # with open('logging.config', 'r') as fp:
 #     LOGGING_CONFIG = yaml.safe_load(fp)