From d30ecb6fb340d5e474305cd745b484d2ac003e0d Mon Sep 17 00:00:00 2001 From: chris meyers Date: Thu, 16 Apr 2020 08:48:12 -0400 Subject: [PATCH] confidence in websocket group logic is high * Replying to websocket group membership with the previous state, delta, and new state has shown to be quite stable. This debug message is not very helpful and is noisy in the dev env. This change removes the debug message. --- awx/main/consumers.py | 1 - 1 file changed, 1 deletion(-) diff --git a/awx/main/consumers.py b/awx/main/consumers.py index d9edbc5ad1..04b7840f69 100644 --- a/awx/main/consumers.py +++ b/awx/main/consumers.py @@ -189,7 +189,6 @@ class EventConsumer(AsyncJsonWebsocketConsumer): group_name, self.channel_name ) - logger.debug(f"Channel {self.channel_name} left groups {old_groups} and joined {new_groups_exclusive}") self.scope['session']['groups'] = new_groups await self.send_json({ "groups_current": list(new_groups),