This is an automated email from the ASF dual-hosted git repository. zhongjiajie pushed a commit to branch 3.2.0-release in repository https://gitbox.apache.org/repos/asf/dolphinscheduler.git
commit 3a749d01097d7dd24ce50745b9751e1ca09af9c4 Author: lamberken <[email protected]> AuthorDate: Wed Sep 6 13:32:26 2023 +0800 [Improve] Fix placeholders should match arguments in log statement (#14850) (cherry picked from commit 11c8e0bdf1f3c22b51333b928e2f480f3312cf27) --- .../apache/dolphinscheduler/api/service/impl/UdfFuncServiceImpl.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dolphinscheduler-api/src/main/java/org/apache/dolphinscheduler/api/service/impl/UdfFuncServiceImpl.java b/dolphinscheduler-api/src/main/java/org/apache/dolphinscheduler/api/service/impl/UdfFuncServiceImpl.java index b5a9696e46..071827d579 100644 --- a/dolphinscheduler-api/src/main/java/org/apache/dolphinscheduler/api/service/impl/UdfFuncServiceImpl.java +++ b/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;
