Skip to content

Commit

Permalink
fix: 로그 기입 #69
Browse files Browse the repository at this point in the history
  • Loading branch information
yhpark95 committed Nov 3, 2023
1 parent 66b23ad commit f21320a
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,7 @@ public String getFirstPlayer(Long gameId) {
int randomIndex = (int)(Math.random() * players.size()) + 1;
Player player = players.get(randomIndex - 1);

log.info("first order" + player.getOrder());
gameStatus.setOrder(player.getOrder());
gameStatus.initCurrentPlayerInfo(player);
return player.getPlayerId();
Expand Down

0 comments on commit f21320a

Please sign in to comment.