0
0
Fork 1
mirror of https://mau.dev/maunium/synapse.git synced 2024-09-11 04:09:34 +02:00

Change from exception to warn

This commit is contained in:
Erik Johnston 2015-04-15 15:12:57 +01:00
parent d5ff9effcf
commit e19f794fee

View file

@ -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):