mirror of
https://github.com/django/daphne.git
synced 2025-04-21 01:02:06 +03:00
Using logger.error instead of logger.exception (#191)
This commit is contained in:
parent
56104e7fc6
commit
2874a0972c
|
@ -96,7 +96,7 @@ class Worker(object):
|
|||
# Handle the message
|
||||
match = self.channel_layer.router.match(message)
|
||||
if match is None:
|
||||
logger.exception("Could not find match for message on %s! Check your routing.", channel)
|
||||
logger.error("Could not find match for message on %s! Check your routing.", channel)
|
||||
continue
|
||||
else:
|
||||
consumer, kwargs = match
|
||||
|
|
Loading…
Reference in New Issue
Block a user