From 983f3fb882c9836296055a8e65c9e35f0ebf77b3 Mon Sep 17 00:00:00 2001 From: Salman Paracha Date: Sat, 6 Sep 2025 23:17:58 -0700 Subject: [PATCH] removed debug statement that would likely trip up integration tests --- crates/llm_gateway/src/stream_context.rs | 6 ------ 1 file changed, 6 deletions(-) diff --git a/crates/llm_gateway/src/stream_context.rs b/crates/llm_gateway/src/stream_context.rs index 0270d3e7..0b932832 100644 --- a/crates/llm_gateway/src/stream_context.rs +++ b/crates/llm_gateway/src/stream_context.rs @@ -914,12 +914,6 @@ impl HttpContext for StreamContext { if self.streaming_response { match self.handle_streaming_response(&body, provider_id) { Ok(serialized_body) => { - debug!( - "[ARCHGW_REQ_ID:{}] UPSTREAM_TRANSFORMED_RESPONSE: body_size={} content={}", - self.request_identifier(), - body.len(), - String::from_utf8_lossy(&serialized_body) - ); self.set_http_response_body(0, body_size, &serialized_body); } Err(action) => return action,