From 2bff7fad691897e22a04a9602a60b91b63ace3f0 Mon Sep 17 00:00:00 2001 From: IQuant Date: Sat, 9 Nov 2024 22:26:45 +0300 Subject: [PATCH] Reduce more logging levels. --- noita-proxy/src/net/world.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/noita-proxy/src/net/world.rs b/noita-proxy/src/net/world.rs index 063771ea..ac7eea84 100644 --- a/noita-proxy/src/net/world.rs +++ b/noita-proxy/src/net/world.rs @@ -554,10 +554,10 @@ impl WorldManager { match current_authority { Some((authority, priority_state)) => { if source == authority { - info!("{source} already has authority of {chunk:?}"); + debug!("{source} already has authority of {chunk:?}"); self.emit_got_authority(chunk, source, priority); } else if priority_state > priority && !can_wait { - info!("{source} is gaining priority over {chunk:?} from {authority}"); + debug!("{source} is gaining priority over {chunk:?} from {authority}"); self.emit_transfer_authority(chunk, source, priority, authority); } else { debug!("{source} requested authority for {chunk:?}, but it's already taken by {authority}"); @@ -879,7 +879,7 @@ impl WorldManager { if let Some(ChunkState::Listening { authority, .. }) = state { *authority = source; } else { - warn!("Got notified of new authority, but not a listener"); + info!("Got notified of new authority, but not a listener"); } } }