From 041a9eda3a1e9989f323802e0558fa98108098dc Mon Sep 17 00:00:00 2001 From: Salman Paracha Date: Fri, 29 Aug 2025 18:33:18 -0700 Subject: [PATCH] fixed the debug statement that was causing the integration tests for wasm to fail --- crates/llm_gateway/src/stream_context.rs | 5 ----- 1 file changed, 5 deletions(-) diff --git a/crates/llm_gateway/src/stream_context.rs b/crates/llm_gateway/src/stream_context.rs index 4e3aef4e..6c0977f0 100644 --- a/crates/llm_gateway/src/stream_context.rs +++ b/crates/llm_gateway/src/stream_context.rs @@ -685,12 +685,7 @@ impl HttpContext for StreamContext { } }; - debug!( - "Setting HTTP request body {}", - String::from_utf8_lossy(&deserialized_body_bytes) - ); self.set_http_request_body(0, body_size, &deserialized_body_bytes); - Action::Continue }