From c581cba4b3a5ae2de035becde9ac92e0ffc5acd0 Mon Sep 17 00:00:00 2001 From: Adil Hafeez Date: Thu, 30 Jan 2025 15:47:39 -0800 Subject: [PATCH] fix more --- crates/prompt_gateway/src/stream_context.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/prompt_gateway/src/stream_context.rs b/crates/prompt_gateway/src/stream_context.rs index c91f0da7..c765cf16 100644 --- a/crates/prompt_gateway/src/stream_context.rs +++ b/crates/prompt_gateway/src/stream_context.rs @@ -363,7 +363,7 @@ impl StreamContext { let http_status = self .get_http_call_response_header(":status") .unwrap_or(StatusCode::OK.as_str().to_string()); - debug!("developer api call response received status code: {}", http_status); + debug!("developer api call response received: status code: {}", http_status); if http_status != StatusCode::OK.as_str() { warn!( "api server responded with non 2xx status code: {}",