mirror of
https://github.com/IntQuant/noita_entangled_worlds.git
synced 2025-10-19 07:03:16 +00:00
Reduce more logging levels.
This commit is contained in:
parent
839cca71da
commit
2bff7fad69
1 changed files with 3 additions and 3 deletions
|
@ -554,10 +554,10 @@ impl WorldManager {
|
||||||
match current_authority {
|
match current_authority {
|
||||||
Some((authority, priority_state)) => {
|
Some((authority, priority_state)) => {
|
||||||
if source == authority {
|
if source == authority {
|
||||||
info!("{source} already has authority of {chunk:?}");
|
debug!("{source} already has authority of {chunk:?}");
|
||||||
self.emit_got_authority(chunk, source, priority);
|
self.emit_got_authority(chunk, source, priority);
|
||||||
} else if priority_state > priority && !can_wait {
|
} 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);
|
self.emit_transfer_authority(chunk, source, priority, authority);
|
||||||
} else {
|
} else {
|
||||||
debug!("{source} requested authority for {chunk:?}, but it's already taken by {authority}");
|
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 {
|
if let Some(ChunkState::Listening { authority, .. }) = state {
|
||||||
*authority = source;
|
*authority = source;
|
||||||
} else {
|
} else {
|
||||||
warn!("Got notified of new authority, but not a listener");
|
info!("Got notified of new authority, but not a listener");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue