fix: silence unroutable cli progress noise

This commit is contained in:
chengyongru
2026-06-18 00:02:45 +08:00
committed by Xubin Ren
parent c29601d303
commit 0d4af68e63
3 changed files with 45 additions and 2 deletions
+1 -1
View File
@@ -171,7 +171,7 @@ class ChannelManager:
"""Return whether progress (or tool-hints) may be sent to *channel_name*."""
ch = self.channels.get(channel_name)
if ch is None:
logger.warning("Progress check for unknown channel: {}", channel_name)
logger.debug("Progress check for unknown channel: {}", channel_name)
return False
return ch.send_tool_hints if tool_hint else ch.send_progress