fixed the debug statement that was causing the integration tests for wasm to fail

This commit is contained in:
Salman Paracha 2025-08-29 18:33:18 -07:00
parent 0a0d2c95a3
commit 041a9eda3a

View file

@ -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
}