Skip to content

Commit

Permalink
【优化】部分系统日志优化,提升可读性;
Browse files Browse the repository at this point in the history
  • Loading branch information
xuxueli committed Nov 23, 2024
1 parent 17b4089 commit e3a66b8
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
9 changes: 5 additions & 4 deletions doc/XXL-JOB官方文档.md
Original file line number Diff line number Diff line change
Expand Up @@ -2400,10 +2400,11 @@ public void execute() {
- b、本次升级数据模型及通讯协议向前兼容,v2.4.*可无缝升级。
### 7.35 版本 v2.5.0 Release Notes[规划中]
- 1、[规划中]升级springboot3.x,解决2.x老版本漏洞类问题。注意,springboot3.x依赖jdk17。
- 2、[规划中]安全功能增强,通讯加密参数改用加密数据避免AccessToken明文, 降低token泄漏风险。
- 3、[规划中]登陆态Token声称逻辑优化,混淆登陆时间属性,降低token泄漏风险。
### 7.36 版本 v2.5.0 Release Notes[规划中]
- 1、【优化】部分系统日志优化,提升可读性;
- 2、[规划中]升级springboot3.x,解决2.x老版本漏洞类问题。注意,springboot3.x依赖jdk17。
- 3、[规划中]安全功能增强,通讯加密参数改用加密数据避免AccessToken明文, 降低token泄漏风险。
- 4、[规划中]登陆态Token声称逻辑优化,混淆登陆时间属性,降低token泄漏风险。
### TODO LIST
- 1、调度隔离:调度中心针对不同执行器,各自维护不同的调度和远程触发组件。
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ public ReturnT<List<String>> nextTriggerTime(String scheduleType, String schedul
}
}
} catch (Exception e) {
logger.error(e.getMessage(), e);
logger.error("nextTriggerTime error. scheduleType = {}, scheduleConf= {}", scheduleType, scheduleConf, e);
return new ReturnT<List<String>>(ReturnT.FAIL_CODE, (I18nUtil.getString("schedule_type")+I18nUtil.getString("system_unvalid")) + e.getMessage());
}
return new ReturnT<List<String>>(result);
Expand Down

0 comments on commit e3a66b8

Please sign in to comment.