Remove some debug output

This commit is contained in:
NGnius (Graham) 2021-06-23 15:32:16 -04:00
parent 0c0ed8b60a
commit 639e38f73a

View file

@ -93,8 +93,7 @@ impl Parsable for GameSave {
for _i in 0..cube_count {
let header = EntityHeader::parse(data)?;
let hash = header.hash;
#[cfg(debug_assertions)]
println!("Handling block {} (hash: {} id:{}/{} components: {})", cubes_h.len(), hash, header.entity_id, header.group_id, header.component_count);
//println!("Handling block {} (hash: {} id:{}/{} components: {})", cubes_h.len(), hash, header.entity_id, header.group_id, header.component_count);
cubes_h.push(header);
cubes_e.push(lookup_hashname(hash, data)?);
}