This commit is contained in:
zhangzhiqiang
2023-02-09 15:00:24 +08:00
parent e395ac5803
commit c4cf28c9c1
7 changed files with 59 additions and 14 deletions

View File

@@ -54,10 +54,10 @@ public class AutoCreateTask {
}
} catch (InvocationTargetException e) {
e.printStackTrace();
log.info("定时器执行失败:{}", e.getTargetException().getMessage());
log.error("定时器执行失败:{}", e.getTargetException().getMessage());
} catch (Exception e) {
e.printStackTrace();
log.info("定时器执行失败:{}", e.getMessage());
log.error("定时器执行失败:{}", e.getMessage());
}
});