Skip to content

Commit 54c1ae7

Browse files
sanityclaude
andcommitted
fix(ci): allow info level for test_utils in RUST_LOG
The logger capture tests need info-level logs to pass. The RUST_LOG filter was set to error by default, which blocked the test's captured messages. Adding test_utils=info allows those tests to work while keeping debug logging for transport layer diagnosis. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent d219f4f commit 54c1ae7

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,8 @@ jobs:
9797
env:
9898
FREENET_LOG: error
9999
# Enable debug logging for transport layer to diagnose packet delivery issues
100-
RUST_LOG: "error,freenet::transport::peer_connection=debug,freenet_core::transport::peer_connection=debug"
100+
# Also allow info level for test_utils so logger capture tests work
101+
RUST_LOG: "error,freenet::transport::peer_connection=debug,freenet_core::transport::peer_connection=debug,freenet::test_utils=info,freenet_core::test_utils=info"
101102
CARGO_TARGET_DIR: ${{ github.workspace }}/target
102103

103104
steps:

0 commit comments

Comments
 (0)