summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--changes/bug-logbook_handler_bubble1
-rw-r--r--src/leap/bitmask/logs/utils.py2
2 files changed, 2 insertions, 1 deletions
diff --git a/changes/bug-logbook_handler_bubble b/changes/bug-logbook_handler_bubble
new file mode 100644
index 00000000..3770e84f
--- /dev/null
+++ b/changes/bug-logbook_handler_bubble
@@ -0,0 +1 @@
+- Remove bubble argument from the logbook NullHandler
diff --git a/src/leap/bitmask/logs/utils.py b/src/leap/bitmask/logs/utils.py
index f709da8b..e38839c7 100644
--- a/src/leap/bitmask/logs/utils.py
+++ b/src/leap/bitmask/logs/utils.py
@@ -55,7 +55,7 @@ def get_logger(perform_rollover=False):
level = logbook.NOTSET
# This handler consumes logs not handled by the others
- null_handler = logbook.NullHandler(bubble=False)
+ null_handler = logbook.NullHandler()
null_handler.push_application()
silencer = SelectiveSilencerFilter()