Fixed little logging mistake

This commit is contained in:
FinnStutzenstein 2019-11-25 06:38:42 +01:00
parent acab54738b
commit 7a18396a78
1 changed files with 1 additions and 1 deletions

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