参考:https://blog.csdn.net/LCF_lxf_ldy/article/details/82558172
private static final Logger logger = LoggerFactory.getLogger(XXXServiceImpl.class); //打印异常信息 throws Throwable logger.error(throwable.getMessage(), throwable); //一般是将捕捉到的Exception对象作为日志记录的最后一个参数 (会显示具体的出错信息以及出错位置), 而且要放在{}可以格式化的参数之外,防止被{}转为e.toString()