From e260a72447f3396692532af69dad0f75b7aaaf22 Mon Sep 17 00:00:00 2001 From: Jussi Saurio Date: Tue, 3 Jun 2025 15:50:34 +0300 Subject: [PATCH] sim: log the interaction about to be executed with INFO I think this is useful to see, without having to drop down to DEBUG and seeing all the other stuff. --- simulator/runner/execution.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/simulator/runner/execution.rs b/simulator/runner/execution.rs index 5f1f284e4..a1ca084e3 100644 --- a/simulator/runner/execution.rs +++ b/simulator/runner/execution.rs @@ -179,7 +179,7 @@ pub(crate) fn execute_interaction( interaction: &Interaction, stack: &mut Vec, ) -> Result { - tracing::trace!( + tracing::info!( "execute_interaction(connection_index={}, interaction={})", connection_index, interaction