Open
Conversation
- 添加 _setup_logging() 函数配置日志输出到文件 - 日志文件位置:~/.uart-mcp/uart-mcp.log - 移除默认的 stderr 处理器,防止干扰 JSON-RPC 协议 Co-authored-by: factory-droid[bot] <138933559+factory-droid[bot]@users.noreply.github.com>
35ec2d2 to
5dffda6
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
问题
在 Factory Droid 中使用 uart-mcp 时会出现断流(会话突然终止,无报错)。
原因分析
原日志配置使用
logging.basicConfig()输出到 stderr,在 MCP stdio 模式下会干扰 JSON-RPC 协议通信。修复方案
_setup_logging()函数将日志输出到文件~/.uart-mcp/uart-mcp.log