summaryrefslogtreecommitdiff
path: root/src/leap/bitmask/util/leap_log_handler.py
diff options
context:
space:
mode:
authorKali Kaneko <kali@leap.se>2013-09-02 13:40:17 +0200
committerKali Kaneko <kali@leap.se>2013-09-02 18:46:51 +0200
commit4b3f00962cbce75f5120c0d370e03c3007dfe92d (patch)
treee82e0a60662ed0289d770762aa1bc6679b5ba7d8 /src/leap/bitmask/util/leap_log_handler.py
parent614f588c603832586a175c6d8a96b4499c0518d1 (diff)
Add a selective filter for leap logs.
Closes: #3504
Diffstat (limited to 'src/leap/bitmask/util/leap_log_handler.py')
-rw-r--r--src/leap/bitmask/util/leap_log_handler.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/leap/bitmask/util/leap_log_handler.py b/src/leap/bitmask/util/leap_log_handler.py
index 9adb21a5..98924c12 100644
--- a/src/leap/bitmask/util/leap_log_handler.py
+++ b/src/leap/bitmask/util/leap_log_handler.py
@@ -90,6 +90,9 @@ class HandlerAdapter(object):
def setLevel(self, *args, **kwargs):
return self._handler.setLevel(*args, **kwargs)
+ def addFilter(self, *args, **kwargs):
+ return self._handler.addFilter(*args, **kwargs)
+
def handle(self, *args, **kwargs):
return self._handler.handle(*args, **kwargs)