Categories:
Audio (13)
Biotech (29)
Bytecode (35)
Database (77)
Framework (7)
Game (7)
General (512)
Graphics (53)
I/O (32)
IDE (2)
JAR Tools (86)
JavaBeans (16)
JDBC (89)
JDK (337)
JSP (20)
Logging (103)
Mail (54)
Messaging (8)
Network (71)
PDF (94)
Report (7)
Scripting (83)
Security (32)
Server (119)
Servlet (17)
SOAP (24)
Testing (50)
Web (19)
XML (301)
Other Resources:
Configuration File for Apache Log4j
How to write a simple configuration file for Apache Log4j? I just want to use the basic functionalities to specify the log file name and the log level.
✍: FYIcenter.com
Below is a simple configuration file, log4j2.xml, that support the Log4j 2 API:
<?xml version="1.0" encoding="UTF-8"?> <!-- Copyright (c) FYIcenter.com --> <Configuration status="WARN"> <Appenders> <File name="MyAppender" fileName="HelloLog4j2.log" bufferedIO="true"> <PatternLayout pattern="%d{HH:mm:ss.SSS} [%t] %-5level %logger{36} - %msg%n"/> </File> <Console name="Screen" target="SYSTEM_OUT"> <PatternLayout pattern="%d{HH:mm:ss.SSS} [%t] %-5level %logger{36} - %msg%n"/> </Console> </Appenders> <Loggers> <Logger name="fyiLogger" level="debug" additivity="true"> <AppenderRef ref="MyAppender"/> </Logger> <Root level="error"> <AppenderRef ref="Screen"/> </Root> </Loggers> </Configuration>
This sample configuration file log4j2.xml does the following:
Â
⇒ Running Program with Apache Log4j Configuration
⇠Running Program with Apache Log4j
⇑ Using Apache Log4j in Java Programs
⇑⇑ FAQ for Apache Log4j
2015-11-11, 1665👍, 0💬
Popular Posts:
Jetty provides an HTTP server, HTTP client, and javax.servlet container. These components are open s...
commons-net.jar is the bytecode of Apache Commons Net library, which implements the client side of m...
JSP(tm) Standard Tag Library 1.1 implementation - Jakarta Taglibs hosts the Standard Taglib 1.1, an ...
Commons Pool provides an Object-pooling API, with three major aspects: 1. A generic object pool inte...
Guava is a suite of core and expanded libraries that include utility classes, google's collections, ...