Log HTTP Version (#5475)

This commit is contained in:
pakrym-oai
2025-10-21 16:29:18 -07:00
committed by GitHub
parent 404cae7d40
commit cdd106b930

View File

@@ -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()
);
}