aboutsummaryrefslogtreecommitdiff
path: root/azalea-world/src
diff options
context:
space:
mode:
Diffstat (limited to 'azalea-world/src')
-rw-r--r--azalea-world/src/chunk_storage.rs5
1 files changed, 3 insertions, 2 deletions
diff --git a/azalea-world/src/chunk_storage.rs b/azalea-world/src/chunk_storage.rs
index 566b3198..daabb214 100644
--- a/azalea-world/src/chunk_storage.rs
+++ b/azalea-world/src/chunk_storage.rs
@@ -104,7 +104,7 @@ impl ChunkStorage {
data: &mut Cursor<&[u8]>,
) -> Result<(), BufReadError> {
if !self.in_range(pos) {
- println!(
+ log::trace!(
"Ignoring chunk since it's not in the view range: {}, {}",
pos.x, pos.z
);
@@ -115,7 +115,8 @@ impl ChunkStorage {
data,
self.height,
)?));
- println!("Loaded chunk {:?}", pos);
+
+ log::trace!("Loaded chunk {:?}", pos);
self[pos] = Some(chunk);
Ok(())