Merge pull request #5142 from FinnStutzenstein/fixLogging

Fixed little logging mistake
This commit is contained in:
Finn Stutzenstein 2019-11-25 07:41:16 +01:00 committed by GitHub
commit 13e9f3453f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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}"