aboutsummaryrefslogtreecommitdiff
path: root/src/EventManager.py
diff options
context:
space:
mode:
authorGravatar jesopo2018-10-01 13:48:22 +0100
committerGravatar jesopo2018-10-01 13:48:22 +0100
commit120acf54eca541b35dbb5501f84704e9681f519b (patch)
tree6e4b9d84d34116d67d50f6fcfb22172e416dcd66 /src/EventManager.py
parentChange modules/line_handler.py to use @Utils.hook (diff)
signature
Add 'trace' logging level for src/Database.py and src/EventManager.py very
verbose debugging
Diffstat (limited to 'src/EventManager.py')
-rw-r--r--src/EventManager.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/EventManager.py b/src/EventManager.py
index 720fe0a1..7f397b0d 100644
--- a/src/EventManager.py
+++ b/src/EventManager.py
@@ -200,7 +200,7 @@ class EventHook(object):
return self._call(kwargs, maximum=maximum)
def _call(self, kwargs, maximum=None):
event_path = self._get_path()
- self.log.debug("calling event: \"%s\" (params: %s)",
+ self.log.trace("calling event: \"%s\" (params: %s)",
[event_path, kwargs])
start = time.monotonic()
@@ -217,7 +217,7 @@ class EventHook(object):
event_path], exc_info=True)
total_milliseconds = (time.monotonic() - start) * 1000
- self.log.debug("event \"%s\" called in %fms", [
+ self.log.trace("event \"%s\" called in %fms", [
event_path, total_milliseconds])
self.check_purge()