Skip to content

Commit

Permalink
每日任务日志前缀修复
Browse files Browse the repository at this point in the history
  • Loading branch information
chopper711 committed Aug 11, 2022
1 parent fe12b0a commit 8d95319
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ public ReturnT<String> everyHourExecuteJobHandler(String param) {
try {
everyHourExecutes.get(i).execute();
} catch (Exception e) {
log.error("每分钟任务异常", e);
log.error("每小时任务异常", e);
}
}
return ReturnT.SUCCESS;
Expand All @@ -94,7 +94,7 @@ public ReturnT<String> everyDayExecuteJobHandler(String param) {
try {
everyDayExecutes.get(i).execute();
} catch (Exception e) {
log.error("每分钟任务异常", e);
log.error("每日任务异常", e);
}
}
return ReturnT.SUCCESS;
Expand Down

0 comments on commit 8d95319

Please sign in to comment.