summaryrefslogtreecommitdiff
path: root/src/leap/bitmask/util/leap_log_handler.py
diff options
context:
space:
mode:
authorTomás Touceda <chiiph@leap.se>2013-09-03 17:59:50 -0300
committerTomás Touceda <chiiph@leap.se>2013-09-03 17:59:50 -0300
commit5dc4bf2886e13a914f8888bc4e49ac813f3cd56c (patch)
tree8f8fe1e7cf87d70f828f97ea8bc4afdbfe170f26 /src/leap/bitmask/util/leap_log_handler.py
parent247242b4fe3845fce89f66aaad11e27270024243 (diff)
parent4b3f00962cbce75f5120c0d370e03c3007dfe92d (diff)
Merge remote-tracking branch 'kali/feature/logging-filter' into develop
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)