This commit is contained in:
Adil Hafeez 2024-11-18 15:54:02 -08:00
parent 2203f85906
commit 2ba5f0866d

View file

@ -169,7 +169,10 @@ impl RootContext for FilterContext {
Duration::from_secs(60), Duration::from_secs(60),
); );
if let Err(error) = self.http_call(call_args, CallContext {}) { 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
);
} }
} }
}); });