diff options
author | Erik Johnston <erik@matrix.org> | 2015-04-15 15:12:57 +0100 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2015-04-15 15:12:57 +0100 |
commit | e19f794fee8fe32215a3dcd49ac37ed7b17a4608 (patch) | |
tree | 360ad428de8e97a276814e81c01fdeda6ef4f8bb /synapse/notifier.py | |
parent | Don't wait on federation_handler.handle_new_event (diff) | |
download | synapse-e19f794fee8fe32215a3dcd49ac37ed7b17a4608.tar.xz |
Change from exception to warn
Diffstat (limited to 'synapse/notifier.py')
-rw-r--r-- | synapse/notifier.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/notifier.py b/synapse/notifier.py index d750a6fcf7..ea854482b5 100644 --- a/synapse/notifier.py +++ b/synapse/notifier.py @@ -98,7 +98,7 @@ class _NotificationListener(object): try: notifier.clock.cancel_call_later(self.timer) except: - logger.exception("Failed to cancel notifier timer") + logger.warn("Failed to cancel notifier timer") class Notifier(object): |