From cdd106b930f6efdb1fdf18083b988d6d06b278cb Mon Sep 17 00:00:00 2001 From: pakrym-oai Date: Tue, 21 Oct 2025 16:29:18 -0700 Subject: [PATCH] Log HTTP Version (#5475) --- codex-rs/core/src/client.rs | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/codex-rs/core/src/client.rs b/codex-rs/core/src/client.rs index 2d614e37..1bf1ad0d 100644 --- a/codex-rs/core/src/client.rs +++ b/codex-rs/core/src/client.rs @@ -336,10 +336,11 @@ impl ModelClient { .get("cf-ray") .map(|v| v.to_str().unwrap_or_default().to_string()); - trace!( - "Response status: {}, cf-ray: {:?}", + debug!( + "Response status: {}, cf-ray: {:?}, version: {:?}", resp.status(), - request_id + request_id, + resp.version() ); }