improvements logging

This commit is contained in:
2026-04-13 23:30:40 +02:00
parent 1fa17aa9b6
commit 5a29533736
6 changed files with 41 additions and 41 deletions

View File

@@ -197,7 +197,7 @@ public class GameBoard {
// Step 4: draw fresh cards into the top row
List<Card> newCards = cardDeck.drawTribe(numPlayers + 4);
topRow.addAll(newCards);
logger.info("NEW CARDS ON TOP {} " , newCards);
logger.info("New cards on top: {} " , newCards);
return isNewEraRevealed(eraBeforeDraw, newCards);
}