Explorar el Código

Fix logger configuration

Apply patch from #485
Unrud hace 9 años
padre
commit
14515cfe27
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      radicale/log.py

+ 1 - 1
radicale/log.py

@@ -29,7 +29,7 @@ import signal
 import sys
 
 
-def configure_from_file(filename, debug, logger):
+def configure_from_file(logger, filename, debug):
     logging.config.fileConfig(filename)
     if debug:
         logger.setLevel(logging.DEBUG)