我做了一個簡單的類,並嘗試使用Logger類方法打印日誌消息,並使用FileAppender將日誌消息附加到文件中。 但是,日誌不會打印在文件中。使用log4j時沒有得到預期的輸出
任何人都可以指導我如何使用我製作的程序在文件中打印這些日誌。 我用在類路徑的log4j-1.2.17 API:
代碼爲以下程序:
public class Client {
static Logger l=Logger.getLogger(Client.class.getName());
public static void main(String[] args) {
Layout l1=new SimpleLayout();
Appender a;
try{
a=new FileAppender(l1,"my.txt",true);
l.debug("Hello Jc");
l.info("Hello Jc");
l.fatal("This is not the error message");
l.addAppender(a);
}
catch(Exception e){
}
System.out.println("your logic executed Successfully");
// TODO Auto-generated method stub
}
輸出:
log4j:WARN No appenders could be found for logger (Client).
log4j:WARN Please initialize the log4j system properly.
log4j:WARN See http://logging.apache.org/log4j/1.2/faq.html#noconfig for more info.
your logic executed Successfully
在文件
預期輸出:
DEBUG Hello Jc
INFO Hello Jc
FATAL This is not the error message
你有log4j.properties或log4j.xml文件在你的類路徑附加器爲您的類和包? – SMA
不,我沒有使用.properties或xml,但我用一個簡單的java類來擁有appender和佈局對象。 – user6389648