Commit ec06ae09 by xuxueli

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

parent 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% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment