From 3fcd5260107ce59c2a5b1432b8a13a53c881cc82 Mon Sep 17 00:00:00 2001 From: Emilia Date: Sat, 3 Aug 2024 17:39:34 -0400 Subject: [PATCH] fix: Remove debug call This one call was spamming my logs and making them unreadable --- plate-tool-web/src/components/plates/plate.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/plate-tool-web/src/components/plates/plate.rs b/plate-tool-web/src/components/plates/plate.rs index 4803972..eb9c1d7 100644 --- a/plate-tool-web/src/components/plates/plate.rs +++ b/plate-tool-web/src/components/plates/plate.rs @@ -65,7 +65,6 @@ pub fn Plate(props: &PlateProps) -> Html { if let Some(val) = volume_map_temp.get_mut(&well) { *val += transfer.volume; } else { - log::info!("well: {:?}, vol: {:?}", well, transfer.volume); volume_map_temp.insert(well, transfer.volume); } volume_max_temp = f32::max(volume_max_temp, transfer.volume);