From bebcd4f66bbbb74991558c55d243cb6ee429ca3d Mon Sep 17 00:00:00 2001 From: Nolan Darilek Date: Fri, 1 Oct 2021 09:07:15 -0500 Subject: [PATCH] Remove logging. --- src/exploration.rs | 8 -------- 1 file changed, 8 deletions(-) diff --git a/src/exploration.rs b/src/exploration.rs index 518f8ac..18febe8 100644 --- a/src/exploration.rs +++ b/src/exploration.rs @@ -358,12 +358,6 @@ fn exploration_changed_announcement( Some(&|v| explorable.get(v.entity()).is_ok()), |handle| { let entity = handle.entity(); - println!("Initial: {:?}, {:?}", entity, names.get(entity),); - println!( - "Exploration collided with {:?}, {:?}", - entity, - names.get(entity).map(|v| v.to_string()) - ); commands.entity(entity).insert(ExplorationFocused); if visible || mappables.get(entity).is_ok() { if let Ok(name) = names.get(entity) { @@ -386,7 +380,6 @@ fn exploration_changed_announcement( "floor".to_string() } } else { - println!("Pre: {:?}", tokens); tokens.join(": ") } } else { @@ -399,7 +392,6 @@ fn exploration_changed_announcement( if fog_of_war { tokens.push("in the fog of war".into()); } - println!("{:?}", tokens); tts.speak(format!("{}", tokens.join(", ")), true)?; } }