diff --git a/Core/src/main/java/fr/pandacube/lib/core/players/PlayerFinder.java b/Core/src/main/java/fr/pandacube/lib/core/players/PlayerFinder.java index 1e1f655..cdcaa82 100644 --- a/Core/src/main/java/fr/pandacube/lib/core/players/PlayerFinder.java +++ b/Core/src/main/java/fr/pandacube/lib/core/players/PlayerFinder.java @@ -316,7 +316,7 @@ public class PlayerFinder { searchResponseList.removeIf(p -> { if (p.name == null) { // if the current name was not found in the database - Log.warning("Cannot find current name for player " + p.id, new Throwable()); + Log.warning("[PlayerFinder] Name found in history table for id " + p.id + " but the current name was not found in the player table."); return true; } return false;