|
@@ -1,8 +1,7 @@
|
|
|
package com.xxl.job.executor.config;
|
|
|
|
|
|
import com.xxl.job.core.executor.impl.XxlJobSpringExecutor;
|
|
|
-import org.slf4j.Logger;
|
|
|
-import org.slf4j.LoggerFactory;
|
|
|
+import com.xxl.job.core.log.XxlJobLogger;
|
|
|
import org.springframework.beans.factory.annotation.Value;
|
|
|
import org.springframework.context.annotation.Bean;
|
|
|
import org.springframework.context.annotation.Configuration;
|
|
@@ -14,8 +13,6 @@ import org.springframework.context.annotation.Configuration;
|
|
|
*/
|
|
|
@Configuration
|
|
|
public class XxlJobConfig {
|
|
|
- private Logger logger = LoggerFactory.getLogger(XxlJobConfig.class);
|
|
|
-
|
|
|
@Value("${xxl.job.admin.addresses}")
|
|
|
private String adminAddresses;
|
|
|
|
|
@@ -40,7 +37,7 @@ public class XxlJobConfig {
|
|
|
|
|
|
@Bean
|
|
|
public XxlJobSpringExecutor xxlJobExecutor() {
|
|
|
- logger.info(">>>>>>>>>>> xxl-job config init.");
|
|
|
+ XxlJobLogger.log(">>>>>>>>>>> xxl-job config init.");
|
|
|
XxlJobSpringExecutor xxlJobSpringExecutor = new XxlJobSpringExecutor();
|
|
|
xxlJobSpringExecutor.setAdminAddresses(adminAddresses);
|
|
|
xxlJobSpringExecutor.setAppName(appName);
|