Skip to content

Commit

Permalink
[FIX] log
Browse files Browse the repository at this point in the history
  • Loading branch information
ssjy4974 committed Jan 21, 2024
1 parent 1005b10 commit e48b43d
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ public class BidApiController {
@PostMapping("")
public Mono<Long> bidding(
@RequestHeader("memberId") String memberId, @RequestBody CreateBidRequest request) {
log.info("isInput : {}", request.isInputCheck());
return bidFacade.createBid(request, memberId);
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ public Mono<Void> start(String auctionId) {
.startAuction(auctionId)
.flatMap(
auction -> {
log.info("startAuction", auction.getStartAt());
scheduler.startJob(auctionId);
return chatHandler.broadCastStart(payload);
});
Expand All @@ -61,5 +62,4 @@ public Mono<Void> end(String auctionId) {
return chatHandler.broadCast(payload).then();
});
}

}

0 comments on commit e48b43d

Please sign in to comment.