Browse Source

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

3.2.1-prepare
lamberken 10 months ago committed by GitHub
parent
commit
11c8e0bdf1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      dolphinscheduler-api/src/main/java/org/apache/dolphinscheduler/api/service/impl/UdfFuncServiceImpl.java

2
dolphinscheduler-api/src/main/java/org/apache/dolphinscheduler/api/service/impl/UdfFuncServiceImpl.java

@ -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;

Loading…
Cancel
Save