fix: Remove debug call
This one call was spamming my logs and making them unreadable
This commit is contained in:
		
							parent
							
								
									108a2677e3
								
							
						
					
					
						commit
						3fcd526010
					
				| 
						 | 
					@ -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);
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
		Reference in New Issue