Skip to content

Commit

Permalink
replace log.info with log.debug
Browse files Browse the repository at this point in the history
  • Loading branch information
pajlada committed Nov 17, 2024
1 parent cc16c1f commit 598a17a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -336,7 +336,7 @@ protected void updateSteps()
var yInPuzzle = localPoint.getY() - baseY;

if (xInPuzzle > 0 && xInPuzzle < SIZE && yInPuzzle >= 0 && yInPuzzle < SIZE) {
log.info("Player is in the puzzle, at {}/{}", xInPuzzle, yInPuzzle);
log.debug("Player is in the puzzle, at {}/{}", xInPuzzle, yInPuzzle);
startUpStep(pathStep);
} else {
log.debug("player is outside of puzzle: {} / {} / {}/{}", playerWp, localPoint, xInPuzzle, yInPuzzle);
Expand Down

0 comments on commit 598a17a

Please sign in to comment.