]> kaliko git repositories - mpd-sima.git/blobdiff - sima/lib/logger.py
Add handling of external plugins
[mpd-sima.git] / sima / lib / logger.py
index 752118847658688be6e8cacaf2ef59fae11e4221..761769bbdfd4066cba7cac4c52da5c01122472fa 100644 (file)
 Logging facility for sima.
 """
 
+# standard library import
 import logging
 import sys
 
+
 LOG_FORMATS = {
-        logging.DEBUG: '{asctime} {filename}:{lineno}({funcName}) {levelname}: {message}',
+        logging.DEBUG: '{asctime} {filename}:{lineno}({funcName}) '
+                                 '{levelname}: {message}',
         logging.INFO:  '{asctime} {levelname}: {message}'
         }
 DATE_FMT = "%Y-%m-%d %H:%M:%S"