aboutsummaryrefslogtreecommitdiffstats
path: root/sonar-application/src/test/fake-app/conf/logback-access.xml
diff options
context:
space:
mode:
Diffstat (limited to 'sonar-application/src/test/fake-app/conf/logback-access.xml')
-rw-r--r--sonar-application/src/test/fake-app/conf/logback-access.xml17
1 files changed, 17 insertions, 0 deletions
diff --git a/sonar-application/src/test/fake-app/conf/logback-access.xml b/sonar-application/src/test/fake-app/conf/logback-access.xml
new file mode 100644
index 00000000000..77cfc885d09
--- /dev/null
+++ b/sonar-application/src/test/fake-app/conf/logback-access.xml
@@ -0,0 +1,17 @@
+<!--
+
+ See http://logback.qos.ch/access.html#configuration
+
+-->
+<configuration debug="false">
+ <contextListener class="ch.qos.logback.classic.jul.LevelChangePropagator"/>
+
+ <appender name="FILE" class="ch.qos.logback.core.FileAppender">
+ <file>${SONAR_HOME}/logs/access.log</file>
+ <encoder>
+ <pattern>combined</pattern>
+ </encoder>
+ </appender>
+
+ <appender-ref ref="FILE" />
+</configuration>