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