任务监控线程Log输出优化,运行中任务的监控Log改为debug级别,减少非核心日志量;

This commit is contained in:
xuxueli 2018-09-24 01:05:12 +08:00
parent b4ec631c78
commit def7afa92f
2 changed files with 2 additions and 1 deletions

View File

@ -1292,6 +1292,7 @@ Tips: 历史版本(V1.3.x)目前已经Release至稳定版本, 进入维护阶段
- 36、任务触发时支持动态传参调度中心与API服务均提供提供动态参数功能
- 37、任务执行日志、调度日志字段类型调整改为text类型并取消字数限制
- 38、GLUE任务脚本字段类型调整改为mediumtext类型提高GLUE长度上限
- 39、任务监控线程Log输出优化运行中任务的监控Log改为debug级别减少非核心日志量
### TODO LIST
- 1、任务权限管理执行器为粒度分配权限核心操作校验权限

View File

@ -59,7 +59,7 @@ public class JobFailMonitorHelper {
if (IJobHandler.SUCCESS.getCode() == log.getTriggerCode() && log.getHandleCode() == 0) {
// job running
JobFailMonitorHelper.monitor(jobLogId);
logger.info(">>>>>>>>>>> job monitor, job running, JobLogId:{}", jobLogId);
logger.debug(">>>>>>>>>>> job monitor, job running, JobLogId:{}", jobLogId);
} else if (IJobHandler.SUCCESS.getCode() == log.getHandleCode()) {
// job success, pass
logger.info(">>>>>>>>>>> job monitor, job success, JobLogId:{}", jobLogId);