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:
SLF4J API Binding to Logging Libraries
How to bind SLF4J API to different Logging Libraries?
✍: Guest
Since SLF4J only provides an abstract logging API,
it must be used together with a specific logging library
like Log4J Logging framework.
Here are some options on how to bind SLF4J API to different logging libraries.
1. SLF4J API + No logging - Application uses slf4j-api.jar only. Logging messages goes nowhere.
2. SLF4J API + Logback logging - Application uses slf4j-api.jar, logback-classic.jar and logback-core.jar.
3. SLF4J API + Log4J logging - Application uses slf4j-api.jar, slf4j-log4j.jar, and log4j.jar.
4. SLF4J API + JDK logging - Application uses slf4j-api.jar and slf4j-jdk.jar.
5. SLF4J API + Simple logging - Application uses slf4j-api.jar, and slf4j-simple.jar.
6. SLF4J API + NOP (No Operation) logging - Application uses slf4j-api.jar, and slf4j-nop.jar.
⇒ Downloading SLF4J Components
2021-11-13, ∼1036🔥, 0💬
Popular Posts:
How to download and install ojdbc11.jar for Oracle 21c? ojdbc11.jar for Oracle 21c is a Java JDBC Dr...
JDK 11 jdk.jdeps.jmod is the JMOD file for JDK 11 JDeps tool, which can be invoked by the "jdeps" co...
commons-io-2.6-sources.j aris the source JAR file for Apache Commons IO 2.6, which is a library of u...
What Is javamail1_1_3.zip? javamail1_1_3.zip is the binary package of JavaMail API 1.1.3 in ZIP form...
ZooKeeper is a centralized service for maintaining configuration information, naming, providing dist...