From bd51517e9f1cd3d340642f82649d45c2305f167c Mon Sep 17 00:00:00 2001 From: Sienna Meridian Satterwhite Date: Wed, 25 Mar 2026 20:35:11 +0000 Subject: [PATCH] fix: demote per-round executor log to debug level The "Executing workflow" message fires every execution round (many times per workflow) and is noisy at INFO. Step start/completion remains at INFO. --- wfe-core/src/executor/workflow_executor.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wfe-core/src/executor/workflow_executor.rs b/wfe-core/src/executor/workflow_executor.rs index ef0fb90..74e8e69 100644 --- a/wfe-core/src/executor/workflow_executor.rs +++ b/wfe-core/src/executor/workflow_executor.rs @@ -106,7 +106,7 @@ impl WorkflowExecutor { let mut execution_errors = Vec::new(); // 3. Find runnable execution pointers. - info!( + debug!( workflow_id, definition_id = %workflow.workflow_definition_id, pointers = workflow.execution_pointers.len(),