This is an automated email from the ASF dual-hosted git repository.

wangyang pushed a commit to branch dev
in repository https://gitbox.apache.org/repos/asf/dolphinscheduler.git


The following commit(s) were added to refs/heads/dev by this push:
     new 11c8e0bdf1 [Improve] Fix placeholders should match arguments in log 
statement (#14850)
11c8e0bdf1 is described below

commit 11c8e0bdf1f3c22b51333b928e2f480f3312cf27
Author: lamberken <lamber...@163.com>
AuthorDate: Wed Sep 6 13:32:26 2023 +0800

    [Improve] Fix placeholders should match arguments in log statement (#14850)
---
 .../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;

Reply via email to