Skip to content

Commit 02cd07f

Browse files
committed
refactor: 로그 제거
1 parent 41b5f85 commit 02cd07f

1 file changed

Lines changed: 1 addition & 4 deletions

File tree

src/main/java/life/mosu/mosuserver/infra/persistence/jpa/RefundQueryRepositoryImpl.java

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -55,10 +55,7 @@ public Page<RefundListResponse> searchAllRefunds(Pageable pageable) {
5555
public List<RefundExcelDto> searchAllRefundsForExcel() {
5656
JPAQuery<Tuple> query = baseQuery();
5757
return query.fetch().stream()
58-
.map(tuple -> {
59-
log.info("tuple log : {} ", tuple);
60-
return mapToExcel(tuple);
61-
})
58+
.map(this::mapToExcel)
6259
.toList();
6360
}
6461

0 commit comments

Comments
 (0)