summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/leap/mx/util/log.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/leap/mx/util/log.py b/src/leap/mx/util/log.py
index 02ceddf..f31684d 100644
--- a/src/leap/mx/util/log.py
+++ b/src/leap/mx/util/log.py
@@ -89,7 +89,7 @@ def msg(msg, *arg, **kwarg):
def debug(msg, *arg, **kwarg):
"""Log a message at the DEBUG level."""
- if config.basic.debug:
+ if config.advanced.debug:
print "[d] %s" % msg
def warn(msg, *arg, **kwarg):