Skip to content

Commit ad279ea

Browse files
authored
nit: logs to trace (#6503)
1 parent 052b052 commit ad279ea

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

codex-rs/core/src/tools/parallel.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,9 +65,9 @@ impl ToolCallRuntime {
6565
Ok(Self::aborted_response(&call, secs))
6666
},
6767
res = async {
68-
tracing::info!("waiting for tool gate");
68+
tracing::trace!("waiting for tool gate");
6969
readiness.wait_ready().await;
70-
tracing::info!("tool gate released");
70+
tracing::trace!("tool gate released");
7171
let _guard = if supports_parallel {
7272
Either::Left(lock.read().await)
7373
} else {

0 commit comments

Comments
 (0)