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:
Apache Commons Logging LogFactory.getLog() Method
How to use LogFactory.getLog() method to create a Log object in Apache Commons Logging API?
✍: FYIcenter.com
The simplest way to create a Log object
is to call the static method LogFactory.getLog()
and let the Apache Commons Logging API to decide
which actual logging system to use.
For example, if you call LogFactory.getLog("MyLog"), Apache Commons Logging API will use the following rules to determine which logging system to use:
Rule 1. If commons-logging.properties file is specified in the class path and it has the org.apache.commons.logging.Log=SomeLoggerClass setting, SomeLoggerClass will be used as the logger.
Rule 2. Else if system property org.apache.commons.logging.Log=SomeLoggerClass is provided, SomeLoggerClass will be used as the logger.
Rule 3. Else if log4j.properties file is specified in the class path, org.apache.commons.logging.impl.Log4JLogger will be used as the logger.
Rule 4. Else if the running JVM is 1.4 or higher, org.apache.commons.logging.impl.Jdk14Logger will be used as the logger.
Rule 5. Else org.apache.commons.logging.impl.SimpleLog will be used as the logger.
⇒ Example of Default Apache Commons Logging
⇐ What is Apache Commons Logging API and Bridges?
2017-05-29, ∼3382🔥, 0💬
Popular Posts:
JDK 6 tools.jar is the JAR file for JDK 6 tools. It contains Java classes to support different JDK t...
JDK 11 jdk.internal.opt.jmod is the JMOD file for JDK 11 Internal Opt module. JDK 11 Internal Opt mo...
What Is javax.websocket-api-1.1. jar?javax.websocket-api-1.1. jaris the JAR file for Java API for We...
How to download and install ojdbc6.jar for Oracle 11g R2? ojdbc6.jar for Oracle 11g R2 is a Java 6, ...
What Is HttpComponents httpcore-4.4.6.jar? HttpComponents httpcore-4.4.6.jar is the JAR file for Apa...