From 598a17a91f822940b13dd090e96f4bebd21ed942 Mon Sep 17 00:00:00 2001 From: Rasmus Karlsson Date: Sun, 17 Nov 2024 23:50:51 +0100 Subject: [PATCH] replace log.info with log.debug --- .../helpers/quests/thecurseofarrav/TilePuzzleSolver.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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);