From cc6b0cada63363a1f92a9ebd3b6d2991716b2c86 Mon Sep 17 00:00:00 2001 From: Serkyo Date: Sun, 2 Aug 2026 02:29:41 +0200 Subject: [PATCH] refactor(client): drop chunk logging superseded by the statistics panel --- crates/client/src/chunks.rs | 16 +--------------- 1 file changed, 1 insertion(+), 15 deletions(-) diff --git a/crates/client/src/chunks.rs b/crates/client/src/chunks.rs index 286e900..4ac80c7 100644 --- a/crates/client/src/chunks.rs +++ b/crates/client/src/chunks.rs @@ -9,7 +9,7 @@ use renderer::vertex::Vertex; use renderer::{MeshKey, RendererError}; use shared::protocol::chunk::ChunkMessage; use shared::world::{CHUNK_SIZE, Chunk, ChunkPos}; -use tracing::{debug, error}; +use tracing::error; use crate::mesh_pool::{JobGen, MeshJob, MeshPool, MeshResult}; @@ -214,20 +214,6 @@ impl ChunkManager { self.totals .accumulate(loaded, dropped, unloaded, dispatched, applied); - - if loaded > 0 || dropped > 0 || unloaded > 0 || applied > 0 || dispatched > 0 { - debug!( - loaded, - dropped, - unloaded, - dispatched, - applied, - pending = self.pending_remesh.len(), - in_flight = self.in_flight.len(), - resident = self.resident.len(), - "chunk stream reconciled" - ); - } } /// Ingests every finished mesh currently available from the pool, uploading the ones that are still current and discarding superseded or evicted ones. Returns the number uploaded.