Only log exceptions when they're not unsafe
This commit is contained in:
parent
42a1cda92c
commit
6c6d593e6d
1 changed files with 4 additions and 3 deletions
|
@ -226,9 +226,10 @@ class EventHook(object):
|
|||
try:
|
||||
returns.append(hook.call(event))
|
||||
except Exception as e:
|
||||
if safe:
|
||||
self.log.error("failed to call event \"%s\"",
|
||||
[self._get_path()], exc_info=True)
|
||||
if not safe:
|
||||
else:
|
||||
raise
|
||||
|
||||
total_milliseconds = (time.monotonic() - start) * 1000
|
||||
|
|
Loading…
Reference in a new issue