Skip to content

Commit

Permalink
📦️ [CHORE] 로그 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
dong2ast committed Jan 18, 2024
1 parent 8702155 commit ddad9ba
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,8 @@ public BadWordFilterService(BadWordLogRepository badWordLogRepository) throws IO
public String badWordChange(Long memberId, String string) {
String changedWord = badWordFiltering.change(string, symbols);

log.info("check-test");
log.info(string);
log.info(changedWord);
if (!changedWord.equals(string)) {
log.warn("change-check");
badWordLogRepository.save(BadWordLog.of(memberId, string));
Expand Down

0 comments on commit ddad9ba

Please sign in to comment.