Changed logging level of channel state checks for client.

This commit is contained in:
SergeantPanda 2025-04-14 21:04:33 -05:00
parent 60fd5afd94
commit 02b5fb6fc0

View file

@ -178,7 +178,7 @@ def stream_ts(request, channel_id):
state_bytes = proxy_server.redis_client.hget(metadata_key, ChannelMetadataField.STATE)
if state_bytes:
current_state = state_bytes.decode('utf-8')
logger.info(f"[{client_id}] Current state of channel {channel_id}: {current_state}")
logger.debug(f"[{client_id}] Current state of channel {channel_id}: {current_state}")
except Exception as e:
logger.warning(f"[{client_id}] Error getting channel state: {e}")