REQ-3345: 同步消息

This commit is contained in:
yanglin 2025-01-23 16:52:00 +08:00
parent d22decd259
commit 783bae4805

View File

@ -40,7 +40,9 @@ public class ImAccounts {
.filter(person -> !findAccount(person).isPresent())
.collect(toSet());
if (!notFound.isEmpty())
logger.log("{}[TID:{}], IM账号不存在列表: {}", operation, group.getTid(), JSON.toJSONString(notFound));
logger.log("{}[{},{}], IM账号不存在列表: {}", operation,
group.getTid(), group.getName(),
JSON.toJSONString(notFound));
return notFound;
}