Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[FIX] log #63

Merged
merged 1 commit into from
Jan 26, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading