Skip to content

Commit

Permalink
[api-server-v1] feat: TextBlockService - 블록 수정 로그 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
gdtknight committed Oct 5, 2023
1 parent 0189000 commit e1bbba3
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,11 @@ public BlockResponseDTO modifyTextBlock(UUID blockId, TextBlockDTO textBlockDTO)

textBlockRepository.save(textBlock);

log.info(
"[TextBlockService] Text Block Updated : content - {}, visible - {}",
textBlock.getContent(),
textBlock.getVisible());

return BlockResponseDTO.fromEntity(textBlock);
}

Expand Down

0 comments on commit e1bbba3

Please sign in to comment.