Skip to content

Commit

Permalink
fix: change debug logging to right level
Browse files Browse the repository at this point in the history
  • Loading branch information
dav1do committed Jan 16, 2024
1 parent bbb2520 commit ddca932
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions runner/src/simulate.rs
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ impl ScenarioState {
async fn new_from_opts(opts: &Opts) -> Result<Self> {
// 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<Peer> = parse_peers_info(opts.peers.clone())
.await?
.into_iter()
Expand Down Expand Up @@ -375,7 +375,7 @@ pub async fn simulate(opts: Opts) -> Result<CommandResult> {
}

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);
Expand Down

0 comments on commit ddca932

Please sign in to comment.