Skip to content

Commit

Permalink
Move monitor tick log to debug (#289)
Browse files Browse the repository at this point in the history
  • Loading branch information
tmpolaczyk authored Oct 17, 2023
1 parent d95d9bf commit 128d99e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion node/src/container_chain_monitor.rs
Original file line number Diff line number Diff line change
Expand Up @@ -209,8 +209,8 @@ pub async fn monitor_task(state: Arc<Mutex<ContainerChainSpawnerState>>) {
let max_running_container_chains = 4;

loop {
log::info!("Monitor tick");
sleep(monitor_period).await;
log::debug!("Monitor tick");
let mut state = state.lock().unwrap();
let monitor_state = &mut state.spawned_containers_monitor;

Expand Down

0 comments on commit 128d99e

Please sign in to comment.