BAEL-1767 - Java 9 Platform Logging API (#5071)

* java 9 logger

* slf4j + logback modules added

* new module for slf4j

* logback config

* cleanup

* format
This commit is contained in:
Marcos Lopez Gonzalez
2018-09-14 15:54:38 +02:00
committed by Grzegorz Piwowarek
parent d5e6a8d436
commit 8c20c665de
10 changed files with 200 additions and 0 deletions

View File

@@ -0,0 +1,6 @@
module com.baeldung.logging.slf4j {
requires org.slf4j;
provides java.lang.System.LoggerFinder
with com.baeldung.logging.slf4j.Slf4jLoggerFinder;
exports com.baeldung.logging.slf4j;
}