Merge pull request #5142 from FinnStutzenstein/fixLogging
Fixed little logging mistake
This commit is contained in:
commit
13e9f3453f
@ -74,7 +74,7 @@ class NotifyWebsocketClientMessage(BaseWebsocketClientMessage):
|
||||
if users is True:
|
||||
users = "all"
|
||||
else:
|
||||
users = ", ".join(users)
|
||||
users = ", ".join(str(user) for user in users)
|
||||
reply_channels = ", ".join(content.get("replyChannels", []))
|
||||
logger.info(
|
||||
f"Got notify '{name}' from {consumer.channel_name} users={users} reply_channels={reply_channels}"
|
||||
|
Loading…
Reference in New Issue
Block a user