Skip to content

Commit

Permalink
fix: 로깅 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
nowgnas committed Jan 16, 2024
1 parent bfcf4e1 commit 4e168a0
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -346,7 +346,10 @@ public StoreAverageDto getStoreAverageRating() {

@Override
public List<StockChangeDto> getFlowerAmountGroupByStoreId(ProcessOrderDto processOrderDto) {
log.info(processOrderDto.getProducts().get(0).toString());
processOrderDto
.getProducts()
.keySet()
.forEach(key -> log.info("!!!!!!!!! {}", processOrderDto.getProducts().get(key)));
Map<Long, List<Product>> productsByProductsGroupByStoreId =
productQueryOutPort.findProductsByProductsGroupByStoreId(
new ArrayList<>(processOrderDto.getProducts().keySet()));
Expand Down

0 comments on commit 4e168a0

Please sign in to comment.