Skip to content

Commit

Permalink
remove log
Browse files Browse the repository at this point in the history
  • Loading branch information
lhpqaq committed Sep 23, 2024
1 parent 8699051 commit 3a61612
Showing 1 changed file with 1 addition and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -369,10 +369,7 @@ public ChatThreadVO getThreadName(Long platformId, Long threadId) {
}
chatThreadPO.setName(threadName);
chatThreadDao.partialUpdateById(chatThreadPO);
log.info("Thread name1: {}", chatThreadPO);
ChatThreadVO chatThreadVo = ChatThreadConverter.INSTANCE.fromPO2VO(chatThreadPO);
log.info("Thread name2: {}", chatThreadVo);
return chatThreadVo;
return ChatThreadConverter.INSTANCE.fromPO2VO(chatThreadPO);
}

@Override
Expand Down

0 comments on commit 3a61612

Please sign in to comment.