Skip to content

Commit

Permalink
[BE-nathan] chore: 카드 등록시의 logging message 수정
Browse files Browse the repository at this point in the history
- "[card-title] {}, [log-information] {}({})"

Related to #8
  • Loading branch information
nathan29849 committed Apr 9, 2022
1 parent cf38130 commit 18cbd7b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ public ResponseEntity<LogDTO> create(CardDTO cardDto) {
cardService.save(cardDto);
LogDTO log = logService.save(Event.CREATE, cardDto);

logger.debug("card: {}, log: {}({})", cardDto.getTitle(), log.getLogEventType(), log.getLogTime());
logger.debug("[card-title] {}, [log-information] {}({})", cardDto.getTitle(), log.getLogEventType(), log.getLogTime());
return ResponseEntity.ok().body(log);
}
}

0 comments on commit 18cbd7b

Please sign in to comment.