Show s3 spans in logs and improve the log messages

This commit is contained in:
Kirill Bulatov
2022-03-29 13:48:26 +03:00
committed by Kirill Bulatov
parent ce0243bc12
commit 277e41f4b7
2 changed files with 5 additions and 5 deletions

View File

@@ -160,7 +160,7 @@ pub fn serve_thread_main<S>(
where
S: Future<Output = ()> + Send + Sync,
{
info!("Starting a http endpoint at {}", listener.local_addr()?);
info!("Starting an HTTP endpoint at {}", listener.local_addr()?);
// Create a Service from the router above to handle incoming requests.
let service = RouterService::new(router_builder.build().map_err(|err| anyhow!(err))?).unwrap();