Name Date Size #Lines LOC

..--

.github/H25-Apr-2025-6349

.idea/H25-Apr-2025-4848

integration/H25-Apr-2025-1,347714

jcl-over-slf4j/H25-Apr-2025-2,9611,174

jul-to-slf4j/H25-Apr-2025-805443

log4j-over-slf4j/H25-Apr-2025-3,3221,455

osgi-over-slf4j/H25-Apr-2025-442215

parent/H25-Apr-2025-398323

slf4j-api/H25-Apr-2025-9,4694,863

slf4j-ext/H25-Apr-2025-4,5782,284

slf4j-jdk-platform-logging/H25-Apr-2025-630319

slf4j-jdk14/H25-Apr-2025-1,274790

slf4j-log4j12/H25-Apr-2025-5841

slf4j-migrator/H25-Apr-2025-3,1061,495

slf4j-nop/H25-Apr-2025-394261

slf4j-reload4j/H25-Apr-2025-1,202706

slf4j-simple/H25-Apr-2025-2,1581,233

src/main/H25-Apr-2025-3227

.gitattributesH A D25-Apr-2025483 2320

.gitignoreH A D25-Apr-2025143 1413

.travis.ymlH A D25-Apr-2025202 2114

Android.bpH A D25-Apr-20253.1 KiB9791

FUNDING.ymlH A D25-Apr-202514 11

LICENSE.txtH A D25-Apr-20251.1 KiB2518

METADATAH A D25-Apr-2025535 1917

MODULE_LICENSE_MITHD25-Apr-20250

NOTICEH A D25-Apr-20251.1 KiB2518

OWNERSH A D25-Apr-202556 32

README.mdH A D25-Apr-20252.7 KiB7149

SECURITY.mdH A D25-Apr-20251.8 KiB6947

codeStyle.xmlH A D25-Apr-202530.5 KiB296295

pom.xmlH A D25-Apr-20256.9 KiB250203

release.shH A D25-Apr-20251 KiB6229

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[![Build Status](https://travis-ci.org/qos-ch/slf4j.svg)](https://travis-ci.org/qos-ch/slf4j)
12
13# Search org.slf4j artifacts on Maven Central
14[![Maven Central](https://img.shields.io/badge/Search%20org%2Eslf4j%20artifacts%20on%20Maven%20Central-2.0.x-green)](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