Skip to content

Commit

Permalink
MORE THINGS
Browse files Browse the repository at this point in the history
  • Loading branch information
ProjectHSI committed Nov 16, 2023
1 parent cdb93ce commit 5ecdffa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/io/github/projecthsi/mobarena/dev/FullLog.java
Original file line number Diff line number Diff line change
Expand Up @@ -175,8 +175,8 @@ private static void doFullLog(Object object, int maxRecursion, int currentRecurs
}
}

for (Object object : objectsToBeAnalyzed) {
doFullLog(object, maxRecursion, currentRecursion);
for (Object newObject : objectsToBeAnalyzed) {
doFullLog(newObject, maxRecursion, currentRecursion);
}

logger.severe(ansiComponentSerializer.serialize(generateBanner(object, currentRecursion)));
Expand Down

0 comments on commit 5ecdffa

Please sign in to comment.