log4j打印exception全部内容

在我们使用log4j打印exception的时候,使用

log.error(e);

 是无法打印exception全部信息的,打印的内容就是e.getMessage();的内容

因此,如果需要打印exception全部信息,要用

log.error("Exception",e);

相关推荐