From 148a6bff14f6ade7b7c2ffa551dd4319119e7b6a Mon Sep 17 00:00:00 2001 From: James Hiew Date: Tue, 31 Dec 2024 22:46:02 +0000 Subject: [PATCH] Trace log duplicate chunk requests --- crates/plugins/src/world/events.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/plugins/src/world/events.rs b/crates/plugins/src/world/events.rs index 68c5efb..62a9fdc 100644 --- a/crates/plugins/src/world/events.rs +++ b/crates/plugins/src/world/events.rs @@ -39,7 +39,7 @@ pub fn handle_generate_chunk_request( { match world.cache.entry((*chunk_position, *zoom_level)) { Entry::Occupied(_) => { - tracing::debug!( + tracing::trace!( ?chunk_position, ?zoom_level, "Ignored request for previously requested chunk"