1. 程式人生 > >ELK錯誤匯總

ELK錯誤匯總

pro port eas ram xmla tex ons file ext

錯誤一:

log4j:WARN No appenders could be found for logger

(org.springframework.context.support.ClassPathXmlApplicationContext).

log4j:WARN Please initialize the log4j system properly.

Spring 使用了LOG4J 這個開源框架來輸出信息,

要解決這個問題非常簡單,建立LOG4J 的配置文件即可。在src 目錄下創建配置文件,選

擇菜單File > New > File,文件名輸入log4j.properties,文件內容如下所示:

log4j.rootLogger=WARN, stdout

log4j.appender.stdout=org.apache.log4j.ConsoleAppender

log4j.appender.stdout.layout=org.apache.log4j.PatternLayout

log4j.appender.stdout.layout.ConversionPattern=%d %p [%c] - %m%n

ELK錯誤匯總