REQ-2405: 添加日志

This commit is contained in:
yanglin 2024-04-28 17:57:30 +08:00
parent 985bde1a65
commit 839dd66672

View File

@ -61,7 +61,7 @@ public class MnsLimiter {
props.getVerifyCodeLimitWindowMinutes(), limitCount);
}
if (alreadySendCount + 1 > limitCount) {
log.warn("{}, request={}", error, request);
log.warn("mns rate limited, {}, request={}", error, request);
throw new ServiceException(ReturnCodeEnum.FAIL.getCode(), error);
}
}