summaryrefslogtreecommitdiffstats
path: root/deluge/log.py
diff options
context:
space:
mode:
Diffstat (limited to 'deluge/log.py')
-rw-r--r--deluge/log.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/deluge/log.py b/deluge/log.py
index b66a6fa2e..5bc13d1b8 100644
--- a/deluge/log.py
+++ b/deluge/log.py
@@ -36,13 +36,15 @@
"""Logging functions"""
-import os
import inspect
import logging
-from deluge import common
+import os
+
from twisted.internet import defer
from twisted.python.log import PythonLoggingObserver
+from deluge import common
+
__all__ = ["setupLogger", "setLoggerLevel", "getPluginLogger", "LOG"]
LoggingLoggerClass = logging.getLoggerClass()