parent
9632019e18
commit
d05c282baa
|
@ -1,5 +1,6 @@
|
|||
[description]
|
||||
Provides JCL implementation that routes logs into slf4j
|
||||
Provides a Java Commons Logging implementation that logs to the SLF4J API.
|
||||
Requires another module that provides and SLF4J implementation.
|
||||
|
||||
[depends]
|
||||
slf4j-api
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
[description]
|
||||
Provides Apache Java Commons Logging API and implementation
|
||||
Provides a Java Commons Logging implementation.
|
||||
To receive jetty logs the jetty-slf4j and slf4j-jcl must also be enabled.
|
||||
|
||||
[depends]
|
||||
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
[description]
|
||||
Enables Java util logging
|
||||
Provides a Jetty Logging implementation that logs to the Java Util Logging API.
|
||||
Requires another module that provides a Java Util Logging implementation.
|
||||
|
||||
[provide]
|
||||
logging
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
[description]
|
||||
Enables Java util logging
|
||||
Enables the Jetty Logging implementation and installs a template
|
||||
configuration in ${jetty.base} resources/jetty-logging.properties.
|
||||
|
||||
[depends]
|
||||
resources
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
[description]
|
||||
Configure Jetty logging to use SLF4J
|
||||
Provides a Jetty Logging implementation that logs to the SLF4J API.
|
||||
Requires another module that provides and SLF4J implementation.
|
||||
|
||||
[depend]
|
||||
slf4j-api
|
||||
|
|
|
@ -1,5 +1,7 @@
|
|||
[description]
|
||||
Provides Apache Log4j 1.2 bridge to Log4j 2.
|
||||
Provides a Log4j v1.2 implementation that logs to the Log4j v2 API.
|
||||
Requires another module that provides and Log4j v2 implementation.
|
||||
To receive jetty logs the jetty-slf4j and slf4j-log4j must also be enabled.
|
||||
|
||||
[depends]
|
||||
log4j2-impl
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
[description]
|
||||
Provides Apache Log4j 1.2
|
||||
Provides a Log4j v1.2 API and implementation.
|
||||
To receive jetty logs enable the jetty-slf4j and slf4j-log4j modules.
|
||||
|
||||
[depends]
|
||||
resources
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
[description]
|
||||
Provides Apache Log4j 2 API.
|
||||
Requires a log4j 2 implementation module
|
||||
Use slf4j-log4j module to link jetty logging
|
||||
Provides the Log4j v2 API
|
||||
Requires another module that provides an Log4j v2 implementation.
|
||||
To receive jetty logs enable the jetty-slf4j, slf4j-log4j and log4j-log4j2 modules.
|
||||
|
||||
[files]
|
||||
maven://org.apache.logging.log4j/log4j-api/2.6.1|lib/log4j/log4j-api-2.6.1.jar
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
[description]
|
||||
Provides Apache Log4j 2 Core.
|
||||
Provides a Log4j v2 implementation.
|
||||
To receive jetty logs enable the jetty-slf4j, slf4j-log4j and log4j-log4j2 modules.
|
||||
|
||||
[depends]
|
||||
log4j2-api
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
[description]
|
||||
Provides Apache Log4j 2 implementation that routes
|
||||
logs into slf4j
|
||||
Provides a Log4j v2 implementation that logs to the SLF4J API.
|
||||
Requires another module that provides and SLF4J implementation.
|
||||
To receive jetty logs enable the jetty-slf4j module.
|
||||
|
||||
[depends]
|
||||
log4j2-api
|
||||
|
|
|
@ -2,9 +2,6 @@
|
|||
Provides SLF4J API. Requires a slf4j implementation (eg slf4j-simple)
|
||||
otherwise a noop implementation is used.
|
||||
|
||||
[provides
|
||||
logging
|
||||
|
||||
[files]
|
||||
maven://org.slf4j/slf4j-api/1.7.21|lib/slf4j/slf4j-api-1.7.21.jar
|
||||
|
||||
|
|
|
@ -1,5 +1,7 @@
|
|||
[description]
|
||||
Provides SLF4J bridge to apache java commons logging
|
||||
Provides a SLF4J implementation that logs to the Java Commons Logging API.
|
||||
Requires another module that provides an JCL implementation.
|
||||
To receive jetty logs enable the jetty-slf4j module.
|
||||
|
||||
[depend]
|
||||
slf4j-api
|
||||
|
|
|
@ -1,5 +1,7 @@
|
|||
[description]
|
||||
Provides SLF4J Log4j implementation.
|
||||
Provides a SLF4J implementation that logs to the Log4j v1.2 API.
|
||||
Requires another module that provides a Log4j implementation.
|
||||
To receive jetty logs enable the jetty-slf4j module.
|
||||
|
||||
[depend]
|
||||
slf4j-api
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
[description]
|
||||
Provides SLF4J simple logging
|
||||
Provides SLF4J simple logging implementation.
|
||||
To receive jetty logs enable the jetty-slf4j module.
|
||||
|
||||
[depend]
|
||||
slf4j-api
|
||||
|
|
Loading…
Reference in New Issue