### :bug: 问题描述 `sdk/src/infra/logger/sink.rs:31-38` 中 `write_event` 接收 `&Event` 但输出线程需要拥有权,每次调用都 clone。 ### :file_folder: 证据 `sink.rs` 第 31-38 行。 ### :white_check_mark: 修复建议 考虑使用 `Arc<Event>` 或 `&'static` 避免 clone。
🐛 问题描述
sdk/src/infra/logger/sink.rs:31-38中write_event接收&Event但输出线程需要拥有权,每次调用都 clone。📁 证据
sink.rs第 31-38 行。✅ 修复建议
考虑使用
Arc<Event>或&'static避免 clone。