diff options
| author | mat <git@matdoes.dev> | 2026-05-08 02:36:02 +0500 |
|---|---|---|
| committer | mat <git@matdoes.dev> | 2026-05-08 04:35:25 +0500 |
| commit | 5e0484c925bd7dd7c1d05fdfaf9cee2e66c07dea (patch) | |
| tree | 51b513f34282186e36ff95871525be8211323f55 /azalea/src/pathfinder/moves | |
| parent | 64b3c5145bb03483f593a0a8a18dd97f2c132499 (diff) | |
| download | azalea-drasl-5e0484c925bd7dd7c1d05fdfaf9cee2e66c07dea.tar.xz | |
upgrade deps
Diffstat (limited to 'azalea/src/pathfinder/moves')
| -rw-r--r-- | azalea/src/pathfinder/moves/mod.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/azalea/src/pathfinder/moves/mod.rs b/azalea/src/pathfinder/moves/mod.rs index c0a85fe6..bf084b68 100644 --- a/azalea/src/pathfinder/moves/mod.rs +++ b/azalea/src/pathfinder/moves/mod.rs @@ -18,7 +18,7 @@ use azalea_registry::builtin::BlockKind; use azalea_world::World; use bevy_ecs::{entity::Entity, message::MessageWriter, system::Commands, world::EntityWorldMut}; use parking_lot::RwLock; -use tracing::debug; +use tracing::trace; use super::{ astar, @@ -170,7 +170,7 @@ impl ExecuteCtx<'_, '_, '_, '_, '_, '_, '_, '_> { } let best_tool_result = best_tool_in_hotbar_for_block(block_state, &self.menu); - debug!("best tool for {block_state:?}: {best_tool_result:?}"); + trace!("best tool for {block_state:?}: {best_tool_result:?}"); self.commands.trigger(SetSelectedHotbarSlotEvent { entity: self.entity, |
