Merge remote-tracking branch 'origin/jetty-9.4.x'
This commit is contained in:
commit
81f78bf16f
|
@ -0,0 +1,16 @@
|
||||||
|
<configuration>
|
||||||
|
<!-- always a good activate OnConsoleStatusListener -->
|
||||||
|
<statusListener class="ch.qos.logback.core.status.OnConsoleStatusListener" />
|
||||||
|
|
||||||
|
<appender name="FILE" class="ch.qos.logback.core.rolling.RollingFileAppender">
|
||||||
|
<file>logs/access.log</file>
|
||||||
|
<rollingPolicy class="ch.qos.logback.core.rolling.TimeBasedRollingPolicy">
|
||||||
|
<fileNamePattern>logs/access.%d{yyyy-MM-dd}.log.zip</fileNamePattern>
|
||||||
|
</rollingPolicy>
|
||||||
|
<encoder>
|
||||||
|
<pattern>combined</pattern>
|
||||||
|
</encoder>
|
||||||
|
</appender>
|
||||||
|
|
||||||
|
<appender-ref ref="FILE" />
|
||||||
|
</configuration>
|
|
@ -0,0 +1,23 @@
|
||||||
|
[description]
|
||||||
|
Enables logback request log.
|
||||||
|
|
||||||
|
[depend]
|
||||||
|
server
|
||||||
|
logback-core
|
||||||
|
resources
|
||||||
|
|
||||||
|
[provide]
|
||||||
|
requestlog
|
||||||
|
|
||||||
|
[xml]
|
||||||
|
etc/jetty-logback-access.xml
|
||||||
|
|
||||||
|
[files]
|
||||||
|
logs/
|
||||||
|
basehome:modules/logback-access/jetty-logback-access.xml|etc/jetty-logback-access.xml
|
||||||
|
basehome:modules/logback-access/logback-access.xml|resources/logback-access.xml
|
||||||
|
maven://ch.qos.logback/logback-access/${logback.version}|lib/logback/logback-access-${logback.version}.jar
|
||||||
|
|
||||||
|
[lib]
|
||||||
|
lib/logback/logback-access-${logback.version}.jar
|
||||||
|
|
|
@ -0,0 +1,15 @@
|
||||||
|
<?xml version="1.0"?>
|
||||||
|
<!DOCTYPE Configure PUBLIC "-//Jetty//Configure//EN" "http://www.eclipse.org/jetty/configure_9_3.dtd">
|
||||||
|
|
||||||
|
<!-- =============================================================== -->
|
||||||
|
<!-- Configure the Logback Request Log -->
|
||||||
|
<!-- =============================================================== -->
|
||||||
|
<Configure id="Server" class="org.eclipse.jetty.server.Server">
|
||||||
|
<Set name="RequestLog">
|
||||||
|
<New id="RequestLog" class="ch.qos.logback.access.jetty.RequestLogImpl">
|
||||||
|
<Set name="name">logback-access</Set>
|
||||||
|
<Set name="resource">/logback-access.xml</Set>
|
||||||
|
<Call name="start"/>
|
||||||
|
</New>
|
||||||
|
</Set>
|
||||||
|
</Configure>
|
|
@ -0,0 +1,17 @@
|
||||||
|
<configuration>
|
||||||
|
<!-- always a good activate OnConsoleStatusListener -->
|
||||||
|
<statusListener class="ch.qos.logback.core.status.OnConsoleStatusListener" />
|
||||||
|
|
||||||
|
<appender name="FILE" class="ch.qos.logback.core.rolling.RollingFileAppender">
|
||||||
|
<file>logs/access.log</file>
|
||||||
|
<rollingPolicy class="ch.qos.logback.core.rolling.TimeBasedRollingPolicy">
|
||||||
|
<fileNamePattern>logs/access.%d{yyyy-MM-dd}.log.zip</fileNamePattern>
|
||||||
|
</rollingPolicy>
|
||||||
|
<encoder>
|
||||||
|
<pattern>combined</pattern>
|
||||||
|
</encoder>
|
||||||
|
</appender>
|
||||||
|
|
||||||
|
<appender-ref ref="FILE" />
|
||||||
|
</configuration>
|
||||||
|
|
Loading…
Reference in New Issue