[Improve] Fix placeholders should match arguments in log statement (#14850)

(cherry picked from commit 11c8e0bdf1)
This commit is contained in:
lamberken 2023-09-06 13:32:26 +08:00 committed by Jay Chung
parent ce935c5c99
commit 3a749d0109
1 changed files with 1 additions and 1 deletions

View File

@ -264,7 +264,7 @@ public class UdfFuncServiceImpl extends BaseServiceImpl implements UdfFuncServic
try {
doesResExist = storageOperate.exists(fullName);
} catch (Exception e) {
log.error("udf resource checking error", fullName);
log.error("udf resource :{} checking error", fullName, e);
result.setCode(Status.RESOURCE_NOT_EXIST.getCode());
result.setMsg(Status.RESOURCE_NOT_EXIST.getMsg());
return result;