mirror of
https://github.com/Dispatcharr/Dispatcharr.git
synced 2026-08-01 14:30:16 +00:00
Changed logging level of channel state checks for client.
This commit is contained in:
parent
60fd5afd94
commit
02b5fb6fc0
1 changed files with 1 additions and 1 deletions
|
|
@ -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}")
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue