mirror of
https://github.com/django/daphne.git
synced 2025-07-13 17:32:17 +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
|
# Handle the message
|
||||||
match = self.channel_layer.router.match(message)
|
match = self.channel_layer.router.match(message)
|
||||||
if match is None:
|
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
|
continue
|
||||||
else:
|
else:
|
||||||
consumer, kwargs = match
|
consumer, kwargs = match
|
||||||
|
|
Loading…
Reference in New Issue
Block a user