diff --git a/src/main/java/com/questhelper/helpers/quests/thecurseofarrav/TilePuzzleSolver.java b/src/main/java/com/questhelper/helpers/quests/thecurseofarrav/TilePuzzleSolver.java index 1e8d263eb6..58705801d1 100644 --- a/src/main/java/com/questhelper/helpers/quests/thecurseofarrav/TilePuzzleSolver.java +++ b/src/main/java/com/questhelper/helpers/quests/thecurseofarrav/TilePuzzleSolver.java @@ -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);