Skip to content

Commit cdd106b

Browse files
authored
Log HTTP Version (#5475)
1 parent 404cae7 commit cdd106b

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

codex-rs/core/src/client.rs

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -336,10 +336,11 @@ impl ModelClient {
336336
.get("cf-ray")
337337
.map(|v| v.to_str().unwrap_or_default().to_string());
338338

339-
trace!(
340-
"Response status: {}, cf-ray: {:?}",
339+
debug!(
340+
"Response status: {}, cf-ray: {:?}, version: {:?}",
341341
resp.status(),
342-
request_id
342+
request_id,
343+
resp.version()
343344
);
344345
}
345346

0 commit comments

Comments
 (0)