-
-
Notifications
You must be signed in to change notification settings - Fork 997
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Ceki Gulcu <[email protected]>
- Loading branch information
Showing
16 changed files
with
108 additions
and
174 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,20 @@ | ||
module org.slf4j { | ||
/** | ||
* <p>This module defines the SLF4J API. </p> | ||
* | ||
* <p>More specifically, the {@link org.slf4j} package contains client-facing classes and interfaces.</p> | ||
* | ||
* <p>The {@link org.slf4j.spi} package contains classes which are intended for logging backends. In particular, </p> | ||
* ogging back-ends must provide a {@link org.slf4j.spi.SLF4JServiceProvider} implementation in order to be picked | ||
* up by SLF4J at initialization time. | ||
* </p> | ||
* | ||
* @moduleGraph | ||
*/ | ||
module org.slf4j { | ||
exports org.slf4j; | ||
exports org.slf4j.spi; | ||
exports org.slf4j.event; | ||
exports org.slf4j.helpers; | ||
uses org.slf4j.spi.SLF4JServiceProvider; | ||
requires java.base; | ||
requires java.base; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
/** | ||
* SLF4J internal representation of a logging event. | ||
* | ||
* <p>>Most notably, the {@link org.slf4j.event.LoggingEvent} interface, a minimal interface sufficient for | ||
* the restitution of data passed by the user to the SLF4J API. | ||
* </p> | ||
*/ | ||
package org.slf4j.event; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
/** | ||
* Various SLF4J <b>internal</b> utility and helper classes. | ||
* | ||
*/ | ||
package org.slf4j.helpers; |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
/** | ||
* Core logging interfaces. | ||
* | ||
* This packages contains the "core", that is client facing, classes and interfaces of the SLF4J API. | ||
*/ | ||
package org.slf4j; |
This file was deleted.
Oops, something went wrong.
58 changes: 0 additions & 58 deletions
58
slf4j-api/src/main/java/org/slf4j/spi/LoggerFactoryBinder.java
This file was deleted.
Oops, something went wrong.
58 changes: 0 additions & 58 deletions
58
slf4j-api/src/main/java/org/slf4j/spi/MarkerFactoryBinder.java
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
/** | ||
* Contains classes and interfaces which are intended for logging backends. | ||
* | ||
* <p> | ||
* Logging back-ends wishing to interact with SLF4J must provide a {@link org.slf4j.spi.SLF4JServiceProvider} | ||
* implementation in order to be picked up by SLF4J at initialization time. | ||
* </p> | ||
* | ||
*/ | ||
package org.slf4j.spi; |
This file was deleted.
Oops, something went wrong.