From c8b59aeda79398506fffe7cf4db6c8e2abec61bd Mon Sep 17 00:00:00 2001 From: Salman Paracha Date: Fri, 5 Sep 2025 12:52:01 -0700 Subject: [PATCH] removed the raw response debug statement --- crates/prompt_gateway/src/stream_context.rs | 3 --- 1 file changed, 3 deletions(-) diff --git a/crates/prompt_gateway/src/stream_context.rs b/crates/prompt_gateway/src/stream_context.rs index 67eca202..96caa378 100644 --- a/crates/prompt_gateway/src/stream_context.rs +++ b/crates/prompt_gateway/src/stream_context.rs @@ -129,9 +129,6 @@ impl StreamContext { body: Vec, mut callout_context: StreamCallContext, ) { - // Debug: print raw bytes in hex to diagnose extra data - debug!("raw upstream response bytes (hex): {}", - body.iter().map(|b| format!("{:02x}", b)).collect::>().join(" ")); let body_str = String::from_utf8(body).unwrap(); info!("on_http_call_response: model server response received"); debug!("response body: {}", body_str);