From ddca9323d6d61b3e1ff61e3641a3a10bf1e19a57 Mon Sep 17 00:00:00 2001 From: David Estes Date: Tue, 16 Jan 2024 11:30:05 -0700 Subject: [PATCH] fix: change debug logging to right level --- runner/src/simulate.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/runner/src/simulate.rs b/runner/src/simulate.rs index ce8554a9..36615f8e 100644 --- a/runner/src/simulate.rs +++ b/runner/src/simulate.rs @@ -145,7 +145,7 @@ impl ScenarioState { async fn new_from_opts(opts: &Opts) -> Result { // We assume exactly one worker per peer. // This allows us to be deterministic in how each user operates. - tracing::warn!(?opts, "opts"); + tracing::debug!(?opts, "opts"); let peers: Vec = parse_peers_info(opts.peers.clone()) .await? .into_iter() @@ -375,7 +375,7 @@ pub async fn simulate(opts: Opts) -> Result { } fn manager_config(topo: &Topology, run_time: String) -> GooseConfiguration { - tracing::warn!("manager config: {:#?}", topo); + tracing::debug!("manager config: {:#?}", topo); let mut config = GooseConfiguration::default(); config.log_level = 2; config.users = Some(topo.users);