From f7d9c29ea9419a3be57175b2f119600dc71411f2 Mon Sep 17 00:00:00 2001 From: Ruslan Pislari Date: Mon, 5 Jan 2026 14:17:57 +0200 Subject: [PATCH 1/2] fix: reduce info logging level to debug for cache addition and request processing --- crates/http-service/src/executor/http.rs | 2 +- crates/http-service/src/lib.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/http-service/src/executor/http.rs b/crates/http-service/src/executor/http.rs index 16e4f36..044a092 100644 --- a/crates/http-service/src/executor/http.rs +++ b/crates/http-service/src/executor/http.rs @@ -348,7 +348,7 @@ mod tests { let component = self.loader().load_component(cfg.binary_id)?; let instance_pre = engine.component_instantiate_pre(&component)?; - tracing::info!("Added '{}' to cache", name); + tracing::debug!("Added '{}' to cache", name); Ok(HttpExecutorImpl::new( instance_pre, store_builder, diff --git a/crates/http-service/src/lib.rs b/crates/http-service/src/lib.rs index 92c58eb..1f36d88 100644 --- a/crates/http-service/src/lib.rs +++ b/crates/http-service/src/lib.rs @@ -254,7 +254,7 @@ where Ok(app_name) => app_name, }; // lookup for application config and binary_id - tracing::info!( + tracing::debug!( "Processing request for application '{}' on URL: {}", app_name, request.uri() From b03399a3620a06f20c1df358016cbeb39117d141 Mon Sep 17 00:00:00 2001 From: Ruslan Pislari Date: Tue, 6 Jan 2026 12:33:04 +0200 Subject: [PATCH 2/2] fix: change logging level from debug to info for cache addition --- crates/http-service/src/executor/http.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/http-service/src/executor/http.rs b/crates/http-service/src/executor/http.rs index 044a092..16e4f36 100644 --- a/crates/http-service/src/executor/http.rs +++ b/crates/http-service/src/executor/http.rs @@ -348,7 +348,7 @@ mod tests { let component = self.loader().load_component(cfg.binary_id)?; let instance_pre = engine.component_instantiate_pre(&component)?; - tracing::debug!("Added '{}' to cache", name); + tracing::info!("Added '{}' to cache", name); Ok(HttpExecutorImpl::new( instance_pre, store_builder,