tweak prints

This commit is contained in:
Quaternions 2024-01-10 19:52:12 -08:00
parent 0abf467eca
commit 828c35dab6

View File

@ -184,10 +184,10 @@ pub fn generate_indexed_models<R:std::io::Read+std::io::Seek>(input:&mut R)->Res
instances:Vec::new(), instances:Vec::new(),
}); });
}, },
_=>print!("model_name={} error",model_name), _=>println!("model_name={} error",model_name),
} }
}, },
_=>print!("no model name={}",model_name), _=>println!("no model name={}",model_name),
} }
} }
@ -210,7 +210,7 @@ pub fn generate_indexed_models<R:std::io::Read+std::io::Seek>(input:&mut R)->Res
..Default::default() ..Default::default()
}); });
}else{ }else{
println!("model not found {}",placement.model); //println!("model not found {}",placement.model);
} }
} }