The logger.rs implementation uses tracing_appender::non_blocking but the dependency was not added to Cargo.toml. This commit adds: - tracing-appender = "0.2" to workspace dependencies (Cargo.toml) - tracing-appender.workspace = true to common/Cargo.toml This fixes compilation errors when using the logger with file output enabled. The non_blocking writer provides proper async file I/O for log files. Verified: - cargo check -p common: passes - cargo clippy -p common: passes - cargo build -p common: success
2.0 KiB
2.0 KiB