From 04ea797851031b08d1eed83f3a09bd810d675bc4 Mon Sep 17 00:00:00 2001 From: Albin Cassirer Date: Tue, 18 Nov 2025 07:52:11 +0700 Subject: [PATCH] Demote function call payload log to debug to avoid noisy error-level stderr --- codex-rs/protocol/src/models.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/codex-rs/protocol/src/models.rs b/codex-rs/protocol/src/models.rs index 755b59f535a7..e97000c5c2af 100644 --- a/codex-rs/protocol/src/models.rs +++ b/codex-rs/protocol/src/models.rs @@ -379,7 +379,7 @@ impl Serialize for FunctionCallOutputPayload { where S: Serializer, { - tracing::error!("Payload: {:?}", self); + tracing::debug!("Function call output payload: {:?}", self); if let Some(items) = &self.content_items { items.serialize(serializer) } else {