Skip to content

Commit

Permalink
Remove some logs
Browse files Browse the repository at this point in the history
  • Loading branch information
barakugav committed Aug 9, 2024
1 parent e910895 commit 83891fa
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion cattus-engine/src/game/model.rs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ pub enum ImplType {
}
static IMPL_TYPE: Mutex<Option<ImplType>> = Mutex::new(None);
pub fn set_impl_type(impl_type: ImplType) {
log::info!("Setting model implementation: {:?}", impl_type);
log::debug!("Setting model implementation: {:?}", impl_type);
*IMPL_TYPE.lock().unwrap() = Some(impl_type);
}

Expand Down
1 change: 0 additions & 1 deletion cattus-engine/src/game/self_play.rs
Original file line number Diff line number Diff line change
Expand Up @@ -256,7 +256,6 @@ impl<Game: IGame> SelfPlayWorker<Game> {
}

log::debug!("Game {} done", game_idx);
println!("Game {} done", game_idx);
}
Ok(())
}
Expand Down

0 comments on commit 83891fa

Please sign in to comment.