fix: Remove debug call

This one call was spamming my logs and making them unreadable
This commit is contained in:
Emilia Allison 2024-08-03 17:39:34 -04:00
parent 108a2677e3
commit 3fcd526010
Signed by: emilia
GPG Key ID: 7A3F8997BFE894E0
1 changed files with 0 additions and 1 deletions

View File

@ -65,7 +65,6 @@ pub fn Plate(props: &PlateProps) -> Html {
if let Some(val) = volume_map_temp.get_mut(&well) { if let Some(val) = volume_map_temp.get_mut(&well) {
*val += transfer.volume; *val += transfer.volume;
} else { } else {
log::info!("well: {:?}, vol: {:?}", well, transfer.volume);
volume_map_temp.insert(well, transfer.volume); volume_map_temp.insert(well, transfer.volume);
} }
volume_max_temp = f32::max(volume_max_temp, transfer.volume); volume_max_temp = f32::max(volume_max_temp, transfer.volume);