Skip to content

Commit

Permalink
[FIX] log
Browse files Browse the repository at this point in the history
  • Loading branch information
ssjy4974 committed Jan 26, 2024
1 parent c9e2b30 commit 9e76354
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -116,6 +116,7 @@ private void updateCountdown() {
}

private Mono<Void> sendCloseCommand(String auctionId) {
log.info("여기나오면안됌 여기는 끝날때만 나오는거야");
ChatPayload<Object> payload = ChatPayload.of(ChatCommand.AUCTION_CLOSE, null);
return auctionService
.endAuction(auctionId)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ public Mono<Void> start(String auctionId) {
}

public Mono<Void> end(String auctionId) {
log.info("이것도 나오면안댐");
return auctionService
.endAuction(auctionId)
.flatMap(
Expand Down

0 comments on commit 9e76354

Please sign in to comment.