From b9a6e338061acc77162d395a2a878ec194319bf4 Mon Sep 17 00:00:00 2001 From: Cursor Agent Date: Mon, 8 Jun 2026 17:29:19 +0000 Subject: [PATCH] Change 'No pending activations' log from warn to debug level This reduces log noise when there are no pending activations to fetch, which is a normal operational state and doesn't require warning level logging. Fixes STREAM-1120 Co-authored-by: George Berdovskiy --- src/grpc/server.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/grpc/server.rs b/src/grpc/server.rs index f1a45533..7f21beb2 100644 --- a/src/grpc/server.rs +++ b/src/grpc/server.rs @@ -189,7 +189,7 @@ impl ConsumerService for TaskbrokerServer { } Ok(None) => { - warn!("No pending activations"); + debug!("No pending activations"); // If we return an error, the worker will place the result back in its internal queue and send the update again in the future, which is not desired Ok(Response::new(SetTaskStatusResponse { task: None }))