]> kaliko git repositories - mpd-sima.git/blobdiff - sima/utils/utils.py
Rework 6538573, actually fixes the issue
[mpd-sima.git] / sima / utils / utils.py
index 2cb7c357a8dbd080405031e17281298dc8a07ea5..8a63f1be291a92d2df863abe15bce0c12da360ac 100644 (file)
@@ -22,6 +22,7 @@
 """
 # pylint: disable=C0111
 
+import logging
 import traceback
 import sys
 
@@ -69,8 +70,7 @@ def normalize_path(path):
 
 def exception_log():
     """Log unknown exceptions"""
-    import logging
-    log = logging.getLogger('sima')
+    log = logging.getLogger(__name__)
     log.error('Unhandled Exception!!!')
     log.error(''.join(traceback.format_exc()))
     log.info('Please report the previous message'