Categories:
Audio (13)
Biotech (29)
Bytecode (36)
Database (77)
Framework (7)
Game (7)
General (507)
Graphics (53)
I/O (35)
IDE (2)
JAR Tools (101)
JavaBeans (21)
JDBC (121)
JDK (426)
JSP (20)
Logging (108)
Mail (58)
Messaging (8)
Network (84)
PDF (97)
Report (7)
Scripting (84)
Security (32)
Server (121)
Servlet (26)
SOAP (24)
Testing (54)
Web (15)
XML (309)
Collections:
Other Resources:
Running Program with Apache Log4j Configuration
How to run my program with Apache Log4j configuration files? I have my program using Log4j 2 API compiled. And my log4j2.xml configuration file is ready.
✍: FYIcenter.com
The easiest way to run your program with a Log4j 2 configuration file is:
Here is a run session with the HelloLog4j2.java program and log4j2.xml:
fyicenter> dir . 1584 HelloLog4j2.class 662 log4j2.xml fyicenter> java -cp .:log4j-api-2.14.1.jar:log4j-core-2.14.1.jar \ HelloLog4j2 Logger class: org.apache.logging.log4j.core.Logger 15:54:32.458 [main] FATAL fyiLogger - Hello - fatal 15:54:32.461 [main] ERROR fyiLogger - Hello - error 15:54:32.461 [main] WARN fyiLogger - Hello - warn 15:54:32.461 [main] INFO fyiLogger - Hello - info 15:54:32.461 [main] DEBUG fyiLogger - Hello - debug fyicenter> type HelloLog4j2.log 15:54:32.458 [main] FATAL fyiLogger - Hello - fatal 15:54:32.461 [main] ERROR fyiLogger - Hello - error 15:54:32.461 [main] WARN fyiLogger - Hello - warn 15:54:32.461 [main] INFO fyiLogger - Hello - info 15:54:32.461 [main] DEBUG fyiLogger - Hello - debug
The above session shows that:
⇒ Using Log4j 1.2 Bridge with Log4j 2 API
⇐ Configuration File for Apache Log4j
2015-11-11, 2234🔥, 0💬
Popular Posts:
What is the sax\Writer.java provided in the Apache Xerces package? I have Apache Xerces 2.11.0 insta...
JDK 11 java.rmi.jmod is the JMOD file for JDK 11 RMI (Remote Method Invocation) module. JDK 11 RMI m...
What Is jms.jar? I heard it's related to JMS (Java Message Service) 1.1? The if you have an jms.jar ...
The Bouncy Castle Crypto package is a Java implementation of cryptographic algorithms, it was develo...
commons-lang-2.6.jar is the JAR file for Apache Commons Lang 2.6, which provides a host of helper ut...