mirror of
https://mau.dev/maunium/synapse.git
synced 2024-12-15 09:13:52 +01:00
Change from exception to warn
This commit is contained in:
parent
d5ff9effcf
commit
e19f794fee
1 changed files with 1 additions and 1 deletions
|
@ -98,7 +98,7 @@ class _NotificationListener(object):
|
||||||
try:
|
try:
|
||||||
notifier.clock.cancel_call_later(self.timer)
|
notifier.clock.cancel_call_later(self.timer)
|
||||||
except:
|
except:
|
||||||
logger.exception("Failed to cancel notifier timer")
|
logger.warn("Failed to cancel notifier timer")
|
||||||
|
|
||||||
|
|
||||||
class Notifier(object):
|
class Notifier(object):
|
||||||
|
|
Loading…
Reference in a new issue