Categories:
Audio (13)
Biotech (29)
Bytecode (36)
Database (77)
Framework (7)
Game (7)
General (507)
Graphics (53)
I/O (35)
IDE (2)
JAR Tools (102)
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 (322)
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, ∼2785🔥, 0💬
Popular Posts:
JRE 8 plugin.jar is the JAR file for JRE 8 Java Control Panel Plugin interface and tools. JRE (Java ...
If you are a Java developer, it is very often that you need to use some 3rd party libraries to perfo...
What is the dom\ElementPrinter.java provided in the Apache Xerces package? I have Apache Xerces 2.11...
Snappy-Java is a Java port of the "snappy", a fast C++ compresser/decompresser developed by Google. ...
What JAR files are required to run sax\Writer.java provided in the Apache Xerces package? 1 JAR file...