This commit is contained in:
2026-01-20 17:51:39 +08:00
parent 4cd71ad35a
commit 034a8c4650
2 changed files with 1 additions and 1 deletions

View File

@@ -114,7 +114,6 @@ public class UDistributionController {
try {
return CzgResult.success(distributionUserService.getInviteCode(shopId, shopUserId));
} catch (Exception e) {
log.error("autoGetInviteCode", e);
log.error("获取邀请码失败用户:{}:{}", shopUserId, e.getMessage());
return CzgResult.success("");
}

View File

@@ -31,6 +31,7 @@ public class FunUtils {
try {
func.run();
} catch (Exception e) {
log.error("方法执行失败: {}", msg, e);
log.warn(msg.length > 0 ? msg[0] : "方法执行失败: {}", e.getMessage());
}
}