From 8465f1f2f4d68dea8bc6cba79aaa673ed4040d85 Mon Sep 17 00:00:00 2001 From: cassirer-openai Date: Tue, 18 Nov 2025 08:16:11 +0700 Subject: [PATCH] Demote function call payload log to debug to avoid noisy error-level stderr (#6808) --- 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 755b59f53..e97000c5c 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 {