在代码中有上面的提示,Java 的日志中不太建议使用 %d 格式化。
上面的代码最好修改为下面的这种方式:
logger.info("Years:{} months:{} days:{}", period.getYears(), period.getMonths(), period.getDays());