Name | Date | Size | #Lines | LOC | ||
---|---|---|---|---|---|---|
.. | - | - | ||||
.github/ | H | 25-Apr-2025 | - | 63 | 49 | |
.idea/ | H | 25-Apr-2025 | - | 48 | 48 | |
integration/ | H | 25-Apr-2025 | - | 1,347 | 714 | |
jcl-over-slf4j/ | H | 25-Apr-2025 | - | 2,961 | 1,174 | |
jul-to-slf4j/ | H | 25-Apr-2025 | - | 805 | 443 | |
log4j-over-slf4j/ | H | 25-Apr-2025 | - | 3,322 | 1,455 | |
osgi-over-slf4j/ | H | 25-Apr-2025 | - | 442 | 215 | |
parent/ | H | 25-Apr-2025 | - | 398 | 323 | |
slf4j-api/ | H | 25-Apr-2025 | - | 9,469 | 4,863 | |
slf4j-ext/ | H | 25-Apr-2025 | - | 4,578 | 2,284 | |
slf4j-jdk-platform-logging/ | H | 25-Apr-2025 | - | 630 | 319 | |
slf4j-jdk14/ | H | 25-Apr-2025 | - | 1,274 | 790 | |
slf4j-log4j12/ | H | 25-Apr-2025 | - | 58 | 41 | |
slf4j-migrator/ | H | 25-Apr-2025 | - | 3,106 | 1,495 | |
slf4j-nop/ | H | 25-Apr-2025 | - | 394 | 261 | |
slf4j-reload4j/ | H | 25-Apr-2025 | - | 1,202 | 706 | |
slf4j-simple/ | H | 25-Apr-2025 | - | 2,158 | 1,233 | |
src/main/ | H | 25-Apr-2025 | - | 32 | 27 | |
.gitattributes | H A D | 25-Apr-2025 | 483 | 23 | 20 | |
.gitignore | H A D | 25-Apr-2025 | 143 | 14 | 13 | |
.travis.yml | H A D | 25-Apr-2025 | 202 | 21 | 14 | |
Android.bp | H A D | 25-Apr-2025 | 3.1 KiB | 97 | 91 | |
FUNDING.yml | H A D | 25-Apr-2025 | 14 | 1 | 1 | |
LICENSE.txt | H A D | 25-Apr-2025 | 1.1 KiB | 25 | 18 | |
METADATA | H A D | 25-Apr-2025 | 535 | 19 | 17 | |
MODULE_LICENSE_MIT | HD | 25-Apr-2025 | 0 | |||
NOTICE | H A D | 25-Apr-2025 | 1.1 KiB | 25 | 18 | |
OWNERS | H A D | 25-Apr-2025 | 56 | 3 | 2 | |
README.md | H A D | 25-Apr-2025 | 2.7 KiB | 71 | 49 | |
SECURITY.md | H A D | 25-Apr-2025 | 1.8 KiB | 69 | 47 | |
codeStyle.xml | H A D | 25-Apr-2025 | 30.5 KiB | 296 | 295 | |
pom.xml | H A D | 25-Apr-2025 | 6.9 KiB | 250 | 203 | |
release.sh | H A D | 25-Apr-2025 | 1 KiB | 62 | 29 |
README.md
1# About SLF4J 2 3The Simple Logging Facade for Java (SLF4J) serves as a simple facade 4or abstraction for various logging frameworks (e.g. java.util.logging, 5logback, reload4j, log4j 2.x) allowing the end user to plug in the desired logging 6framework at deployment time. 7 8More information can be found on the [SLF4J website](http://www.slf4j.org). 9 10# Build Status 11[](https://travis-ci.org/qos-ch/slf4j) 12 13# Search org.slf4j artifacts on Maven Central 14[](https://search.maven.org/search?q=g:org.slf4j%20AND%20v:2.0.%3F) 15 16 17# In case of problems 18 19In case of problems please do not hesitate to post an e-mail message 20on the [email protected] mailing list. However, please do not 21directly e-mail SLF4J developers. The answer to your question might 22be useful to other users. Moreover, there are many knowledgeable users 23on the slf4j-user mailing lists who can quickly answer your 24questions. 25 26# Urgent issues 27 28For urgent issues do not hesitate to [champion a release](https://github.com/sponsors/qos-ch/sponsorships?tier_id=77436). 29In principle, most championed issues are solved within 3 business days ensued by a release. 30 31# How to build SLF4J 32 33SLF4J uses Maven as its build tool. 34 35SLF4J version 2.0.x will run under Java 8 but requires Java 9 or later to build. 36 37# How to contribute pull requests 38 39If you are interested in improving SLF4J, that is great! The SLF4J 40community looks forward to your contribution. Please follow this 41process: 42 431. Start a discussion on the [slf4j-dev mailing 44list](http://www.slf4j.org/mailing-lists.html) about your proposed 45change. Alternately, file a [bug 46report](http://www.slf4j.org/bug-reporting.html) to initiate the 47discussion. Note that we ask pull requests to be linked to a [Jira 48ticket](https://jira.qos.ch/). 49 502. Fork qos-ch/slf4j. Ideally, create a new branch from your fork for 51your contribution to make it easier to merge your changes back. 52 533. Make your changes on the branch you hopefully created in Step 2. Be 54sure that your code passes existing unit tests. Please add unit tests 55for your work if appropriate. It usually is. 56 574. All commits must have signed off by the contributor attesting to 58[Developer Certificate of Origin 59(DCO)](https://developercertificate.org/). Commits without sign off 60will be automatically rejected by the [DCO GitHub 61check](https://probot.github.io/apps/dco/) application. 62 635. Push your changes to your fork/branch in GitHub. Don't push it to 64your master! If you do it will make it harder to submit new changes 65later. 66 676. Submit a pull request to SLF4J from your commit page on GitHub. 68 697. Did we mention that you will be asked to link your pull request 70with a Jira ticket? 71