Browse Source

Remove some debug output

tags/v0.5.1
NGnius (Graham) 2 years ago
parent
commit
639e38f73a
1 changed files with 1 additions and 2 deletions
  1. +1
    -2
      src/techblox/gamesave.rs

+ 1
- 2
src/techblox/gamesave.rs 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)?);
}


Loading…
Cancel
Save