From 2ba5f0866d5bb16ce652f792c6937d747f0161dd Mon Sep 17 00:00:00 2001 From: Adil Hafeez Date: Mon, 18 Nov 2024 15:54:02 -0800 Subject: [PATCH] fix log --- crates/llm_gateway/src/filter_context.rs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/crates/llm_gateway/src/filter_context.rs b/crates/llm_gateway/src/filter_context.rs index 2f73151d..619ea85f 100644 --- a/crates/llm_gateway/src/filter_context.rs +++ b/crates/llm_gateway/src/filter_context.rs @@ -169,7 +169,10 @@ impl RootContext for FilterContext { Duration::from_secs(60), ); if let Err(error) = self.http_call(call_args, CallContext {}) { - warn!("failed to schedule http call: {:?}", error); + warn!( + "failed to schedule http call to otel-collector: {:?}", + error + ); } } });