In this tutorials we are going to see how to create simple log4j application to logging message into file using DOM Configurator with java program.org.apache.log4j.FileAppender used to log the message in file, configuration available in FileAppender is listed below.
Property | Description |
immediatlush | Default value of immediate flush is true, which means that output stream of the file being flushed with each append operation. |
encoding | Default value of encoding is platform specific encoding.we can use any possible character-encoding. |
threshold | Threshold level for appender.We can use any one of level |
filename | The name of output file |
fileAppend | Default value of fileAppend is true, which means logging message being append in end of file |
bufferedIO | Default value of bufferedIO is false.The bufferedIO used to enable or disable buffered writing. |
bufferSize | Default value of bufferSize is 8kb.If bufferedIO enabled means we can set buffer size. |
log4j.xml
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE log4j:configuration SYSTEM "log4j.dtd">
<log4j:configuration xmlns:log4j='http://jakarta.apache.org/log4j/'>
<appender name="FILE" class="org.apache.log4j.FileAppender">
<param name="file" value="${user.home}/log.log" />
<param name="append" value="true" />
<layout class="org.apache.log4j.PatternLayout">
<param name="conversionPattern" value="%r [%t] %p %c %x - %m%n" />
</layout>
</appender>
<root>
<level value="DEBUG" />
<appender-ref ref="FILE" />
</root>
</log4j:configuration>
In this configuration “file” is the path of log output, in which the out put file will be created in user document , “log.log” is Name of the file.
root used to configure Level and Appender, in this example I used DEBUG as Level and FileAppender is appender(FILE is name of appender).PatternLayout is used to configure log4j message format.
Now create java class called Log4jFileAppenderExample under com.javatutorialscorner.log4j.fileappender package.
Log4jFileAppenderExample.java
package com.javatutorialscorner.log4j.fileappender;
import org.apache.log4j.BasicConfigurator;
import org.apache.log4j.Logger;
import org.apache.log4j.xml.DOMConfigurator;
public class Log4jFileAppenderExample {
private static final String FILE_PATH = "log4j.xml";
private static final Logger log = Logger
.getLogger(Log4jFileAppenderExample.class);
/**
* @param args
*/
public static void main(String[] args) {
// TODO Auto-generated method stub
if (FILE_PATH == null) {
BasicConfigurator.configure();
log.info("Log4j Configured using Basic Configurator");
} else {
DOMConfigurator.configure(FILE_PATH);
log.info("Log4j Configured using XML configurator");
}
log.debug("Debug message by Java Tutorials Corner");
log.info("Info message by Java Tutorials Corner");
log.warn("Warn message by Java Tutorials Corner");
log.error("Error message by Java Tutorials Corner");
log.fatal("Fatal message by Java Tutorials Corner");
}
}
Create instance for Logger class , getLogger(Log4jFileAppenderExample.class) method accept fully qualified class name as its argument. In this example if xml configuration file not exist in specified location then BasicConfigurator.configure() used to initialize log4j application otherwise DOMConfigurator.configure(FILE_PATH) loads the configuration from property file . Basic configurator shows the log in console.
now you can run the application, you will see the following output file in specified location, which contains following output.
0 [main] INFO com.javatutorialscorner.log4j.fileappender.Log4jFileAppenderExample - Log4j Configured using XML configurator
0 [main] DEBUG com.javatutorialscorner.log4j.fileappender.Log4jFileAppenderExample - Debug message by Java Tutorials Corner
0 [main] INFO com.javatutorialscorner.log4j.fileappender.Log4jFileAppenderExample - Info message by Java Tutorials Corner
0 [main] WARN com.javatutorialscorner.log4j.fileappender.Log4jFileAppenderExample - Warn message by Java Tutorials Corner
0 [main] ERROR com.javatutorialscorner.log4j.fileappender.Log4jFileAppenderExample - Error message by Java Tutorials Corner
0 [main] FATAL com.javatutorialscorner.log4j.fileappender.Log4jFileAppenderExample - Fatal message by Java Tutorials Corner
0 comments:
Post a Comment