diff options
| author | 2019-07-15 14:27:55 +0100 | |
|---|---|---|
| committer | 2019-07-15 14:27:55 +0100 | |
| commit | 304fcdaebb4e8e4fb3db89fb58e8f593d45b5a0b (patch) | |
| tree | 7101d0b5489beb0392f7b4f5332ed434feb5726c /src | |
| parent | use "extended" tweet mode so long tweets are not truncated (diff) | |
| signature | ||
gotta str()-ify `kwargs` before logging it
Diffstat (limited to 'src')
| -rw-r--r-- | src/EventManager.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/EventManager.py b/src/EventManager.py index ab6e4034..6e227a28 100644 --- a/src/EventManager.py +++ b/src/EventManager.py @@ -149,11 +149,11 @@ class EventRoot(object): path_str = self._path_str(path) if not path_str in self._hooks: self.log.trace("not calling non-hooked event \"%s\" (params: %s)", - [path_str, kwargs]) + [path_str, str(kwargs)]) return returns self.log.trace("calling event: \"%s\" (params: %s)", - [path_str, kwargs]) + [path_str, str(kwargs)]) start = time.monotonic() hooks = self._hooks[path_str] |
