一唠倦、結論:
- Logger類下有多個不同的error方法厂镇,根據(jù)傳入?yún)?shù)的個數(shù)及類型的不同,自動選擇不同的重載方法雅镊。
- 當
logger.error(Object obj)
只傳入一個參數(shù)時會將異常對象作為Object使用襟雷,并最終當做String打印出來; - 當使用兩個參數(shù)
logger.error(String message, Throwable t)
,且第二個參數(shù)為Throwable時仁烹,才會將完整的異常堆棧打印出來耸弄。
二、代碼示例:
import org.apache.logging.log4j.LogManager;
import org.apache.logging.log4j.Logger;
/**
* @author ZL
* @date 2020年2月26日 上午10:32:58
* @Description
*/
public class TestLog4j2 {
private static final Logger logger = LogManager.getLogger(TestLog4j2.class);
public static void main(String[] args) {
try {
int i = 1/0;
} catch (Exception e) {
logger.error("使用 + 號連接直接輸出 e :"+e);
System.out.println("--------------------------------------------");
logger.error("使用 + 號連接直接輸出 e.toString() :"+e.toString());
System.out.println("--------------------------------------------");
logger.error("使用 + 號連接直接輸出 e.getMessage() :"+e.getMessage());
System.out.println("--------------------------------------------");
logger.error("使用 晃危,號 且第二個參數(shù)為Throwable :",e);
System.out.println("--------------------------------------------");
logger.error("第二個參數(shù)為Throwable,使用分隔符{} :",e);
System.out.println("--------------------------------------------");
logger.error("第二個參數(shù)為Object,使用分隔符{} :","AAA");
System.out.println("--------------------------------------------");
}
}
}
信息輸出:
[圖片上傳失敗...(image-2090bd-1583234979820)]
三叙赚、查看源碼中的方法描述
根據(jù)方法重載特性老客,當只輸入一個參數(shù)時僚饭,此對象會被當做Object進行打印輸出,如果是Exception e的話胧砰,這里直接就toString()鳍鸵。
/**
* Logs a message object with the {@link Level#ERROR ERROR} level.
*
* @param message the message object to log.
*/
void error(Object message);
根據(jù)方法重載特性,當?shù)诙€參數(shù)為Throwable時尉间,會打印出異常信息偿乖,并且包含異常堆棧信息击罪。
/**
* Logs a message at the {@link Level#ERROR ERROR} level including the stack trace of the {@link Throwable}
* <code>t</code> passed as parameter.
*
* @param message the message object to log.
* @param t the exception to log, including its stack trace.
*/
void error(String message, Throwable t);
根據(jù)方法重載特性,當?shù)诙€參數(shù)為Object時贪薪,會根據(jù)占位符進行替換并打印出錯誤日志媳禁。
/**
* Logs a message with parameters at error level.
*
* @param message the message to log; the format depends on the message factory.
* @param p0 parameter to the message.
*/
void error(String message, Object p0);
四、結論:
- 使用
Logger.error(e)
画切、Logger.error(e.getMessage())
竣稽、Logger.error("some msg" + e)
、Logger.error("some msg" + e.getMessage())
都是調(diào)用的logger.error(Object message)
霍弹,這個方法都會將入?yún)斪鱋bject輸出毫别,不會打印堆棧信息。 - 在使用
Logger.error("first param ",e)
時會調(diào)用logger.error(String message, Throwable t)
典格,此方法會完整的打印出錯誤堆棧信息岛宦。