SLF4J列印日誌 logger.error用法
阿新 • • 發佈:2018-12-16
使用SLF4J列印日誌,它有一個佔位符(place holder){},一般不是異常的是這樣列印的:
- logger.info("InvestmentFacadeImpl queryInvestmentInfo: investmentListResponse is {}", investmentListResponse);
{} 就是一個佔位符,那麼打印出來的結果就是
- InvestmentFacadeImpl queryInvestmentInfo: investmentListResponse is ********
如果是異常,那麼該怎麼列印呢?
一個錯誤的示範:
- logger.error("CrowdFundingAssetServiceImpl insert throws exception is {}", e.getMessage());
其實我們可以去看一下error() 方法的原始碼,就知道正確的列印方式了:
- /**
- * Log an exception (throwable) at the ERROR level with an
- * accompanying message.
- *
- * @param msg the message accompanying the exception
- * @param t the exception (throwable) to log
- */
- public void error(String msg, Throwable t);
對於異常,是不需要佔位符的,而且也不需要e.getMessage(),直接打印出來即可
- logger.error("FinancingManualFacadeImpl.addFinancingProduct failed! ", e);