소스 검색

Merge branch 'master' of https://github.com/xuxueli/xxl-job

xuxueli 5 년 전
부모
커밋
8a5e442023
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      xxl-job-core/src/main/java/com/xxl/job/core/executor/impl/XxlJobSpringExecutor.java

+ 1 - 1
xxl-job-core/src/main/java/com/xxl/job/core/executor/impl/XxlJobSpringExecutor.java 파일 보기

@@ -46,7 +46,7 @@ public class XxlJobSpringExecutor extends XxlJobExecutor implements ApplicationC
46 46
                     String name = serviceBean.getClass().getAnnotation(JobHandler.class).value();
47 47
                     IJobHandler handler = (IJobHandler) serviceBean;
48 48
                     if (loadJobHandler(name) != null) {
49
-                        throw new RuntimeException("xxl-job jobhandler naming conflicts.");
49
+                        throw new RuntimeException("xxl-job jobhandler naming conflicts.error name:"+name);
50 50
                     }
51 51
                     registJobHandler(name, handler);
52 52
                 }