提交 ec06ae09 编写于 作者: 许雪里's avatar 许雪里

底层Log调优,应用正常终止取消异常栈信息打印;

上级 a53e77b4
......@@ -93,7 +93,7 @@ public class JobFailMonitorHelper {
}
}
logger.warn(">>>>>>>>>>> xxl-job, job fail monitor thread stop");
logger.info(">>>>>>>>>>> xxl-job, job fail monitor thread stop");
}
});
......
......@@ -86,7 +86,7 @@ public class JobRegistryMonitorHelper {
}
}
}
logger.warn(">>>>>>>>>>> xxl-job, job registry monitor thread stop");
logger.info(">>>>>>>>>>> xxl-job, job registry monitor thread stop");
}
});
registryThread.setDaemon(true);
......
......@@ -110,12 +110,17 @@ public class TriggerCallbackThread {
try {
retryFailCallbackFile();
} catch (Exception e) {
logger.error(e.getMessage(), e);
if (!toStop) {
logger.error(e.getMessage(), e);
}
}
try {
TimeUnit.SECONDS.sleep(RegistryConfig.BEAT_TIMEOUT);
} catch (InterruptedException e) {
logger.warn(">>>>>>>>>>> xxl-job, executor retry callback thread interrupted, error msg:{}", e.getMessage());
if (!toStop) {
logger.error(e.getMessage(), e);
}
}
}
logger.info(">>>>>>>>>>> xxl-job, executor retry callback thread destory.");
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册