Go to file
Ceki Gulcu 9e9a64bcb6 upgade plugin versions, clean up 2021-06-29 15:33:27 +02:00
.idea Change the java indent from 2 to 4. 2019-08-12 17:46:11 +02:00
integration don't put on Maven Central 2019-10-13 18:04:00 +02:00
jcl-over-slf4j Avoid potentially "expensive" rendering of message Object to String when log level is disabled SLF4J-497 2021-06-15 11:59:32 +02:00
jul-to-slf4j start work on 2.0.0-alpha2-SNAPSHOT 2019-10-01 21:25:16 +02:00
log4j-over-slf4j formatting changes only 2021-06-19 18:52:57 +02:00
osgi-over-slf4j start work on 2.0.0-alpha2-SNAPSHOT 2019-10-01 21:25:16 +02:00
slf4j-api the second -jar- goal is redundant 2021-06-29 15:29:49 +02:00
slf4j-ext unused imports 2021-06-16 00:29:08 +02:00
slf4j-jdk14 fix SLF4J-485, LoggingEventBuilder addArgument() should take Supplier<?>, not Supplier<Object> 2021-06-16 00:28:32 +02:00
slf4j-log4j12 minimal version is 8 2021-06-17 23:09:44 +02:00
slf4j-migrator attempt to fix slf4j-migrator Maven Central upload issue 2019-06-13 01:19:32 +02:00
slf4j-nop start work on 2.0.0-alpha2-SNAPSHOT 2019-10-01 21:25:16 +02:00
slf4j-simple start work on 2.0.0-alpha2-SNAPSHOT 2019-10-01 21:25:16 +02:00
slf4j-site keep highlighted info for 2.0.0-alpha0 2021-06-19 10:25:15 +02:00
src/main skip assembly 2019-10-13 18:10:13 +02:00
.gitattributes Add git attributes 2014-09-26 23:33:52 -04:00
.gitignore add mac os x metadata file .DS_Store to .gitignore 2013-03-27 03:13:34 +04:00
.travis.yml fix notification adress 2019-05-05 17:25:17 +02:00
LICENSE.txt [license] Update copyright year to 2017 2017-03-04 21:06:42 -05:00
README.md typo fix 2019-08-09 23:33:53 +02:00
codeStyle.xml Reformat all code with the exception of the slf4j-android module to use 4 space indentation and max line width of 160. 2015-03-26 12:59:25 +01:00
pom.xml upgade plugin versions, clean up 2021-06-29 15:33:27 +02:00
release.sh start 2.0.0-alpha0 2019-04-28 11:48:09 +02:00
test testing 2009-10-01 18:01:15 +02:00

README.md

About SLF4J

The Simple Logging Facade for Java (SLF4J) serves as a simple facade or abstraction for various logging frameworks (e.g. java.util.logging, logback, log4j) allowing the end user to plug in the desired logging framework at deployment time. More information can be found on the SLF4J website.

Build Status

Build Status

How to build SLF4J

SLF4J uses Maven as its build tool.

All versions upto and including 1.7.x require Java 5 or later to build. SLF4J version 2.0.x requires Java 9 or later.

How to contribute pull requests

If you are interested in improving SLF4J, that is great! The SLF4J community looks forward to your contribution. Please follow this process:

  1. Start a discussion on the slf4j-dev mailing list about your proposed change. Alternately, file a bug report to initiatite the discussion. Note that we usually ask most pull requests to be linked to a Jira ticket.

  2. Fork qos-ch/slf4j. Ideally, create a new branch from your fork for your contribution to make it easier to merge your changes back.

  3. Make your changes on the branch you hopefuly created in Step 2. Be sure that your code passes existing unit tests. Please add unit tests for your work if appropriate. It usually is.

  4. Push your changes to your fork/branch in github. Don't push it to your master! If you do it will make it harder to submit new changes later.

  5. Submit a pull request to SLF4J from from your commit page on github.

  6. Did we mention that you will be asked to link your pull request with a Jira ticket?