Skip to content

Commit d65fd83

Browse files
committed
🗑️ remove: 플레이어 로그 삭제
1 parent a0af97b commit d65fd83

File tree

1 file changed

+1
-6
lines changed

1 file changed

+1
-6
lines changed

backend/src/main/java/io/f1/backend/domain/game/app/GameService.java

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -84,9 +84,6 @@ public void gameStart(Long roomId, UserPrincipal principal) {
8484

8585
timerService.startTimer(room, START_DELAY);
8686

87-
PlayerListResponse playerListResponse = toPlayerListResponse(room);
88-
log.info(playerListResponse.toString());
89-
9087
messageSender.sendBroadcast(
9188
destination, MessageType.GAME_START, toGameStartResponse(questions));
9289
messageSender.sendBroadcast(
@@ -212,9 +209,7 @@ public void handlePlayerReady(Long roomId, String sessionId) {
212209

213210
String destination = getDestination(roomId);
214211

215-
PlayerListResponse playerListResponse = toPlayerListResponse(room);
216-
log.info(playerListResponse.toString());
217-
messageSender.sendBroadcast(destination, MessageType.PLAYER_LIST, playerListResponse);
212+
messageSender.sendBroadcast(destination, MessageType.PLAYER_LIST, toPlayerListResponse(room));
218213
}
219214

220215
public void changeGameSetting(

0 commit comments

Comments
 (0)