We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9edde11 commit 3f1f3e9Copy full SHA for 3f1f3e9
src/debug.py
@@ -25,8 +25,9 @@
25
import helper_startup
26
helper_startup.loadConfig()
27
28
-# TODO(xj9): Get from a config file.
29
-log_level = 'DEBUG'
+# Now can be overriden from a config file, which uses standard python logging.config.fileConfig interface
+# examples are here: https://bitmessage.org/forum/index.php/topic,4820.msg11163.html#msg11163
30
+log_level = 'WARNING'
31
32
def log_uncaught_exceptions(ex_cls, ex, tb):
33
logging.critical(''.join(traceback.format_tb(tb)))
0 commit comments