annotate spring-boot-playground/src/test/resources/logback-test.xml @ 11:f3f9102ef7c0

Noch ein Test mit der in-memory Datenbank: diesmal wird ein Testdatensatz vorher rein geladen, der dann im Test geholt wird.
author Dirk Olmes <dirk.olmes@codedo.de>
date Thu, 13 Aug 2020 17:33:20 +0200
parents 5870f5695e43
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
9
5870f5695e43 Logging Konfiguration, damit der Test maximal still ist. Das Spring Logo ist jetzt auch deaktiviert.
Dirk Olmes <dirk.olmes@codedo.de>
parents:
diff changeset
1 <?xml version="1.0" encoding="UTF-8"?>
5870f5695e43 Logging Konfiguration, damit der Test maximal still ist. Das Spring Logo ist jetzt auch deaktiviert.
Dirk Olmes <dirk.olmes@codedo.de>
parents:
diff changeset
2 <configuration>
5870f5695e43 Logging Konfiguration, damit der Test maximal still ist. Das Spring Logo ist jetzt auch deaktiviert.
Dirk Olmes <dirk.olmes@codedo.de>
parents:
diff changeset
3 <appender name="STDOUT"
5870f5695e43 Logging Konfiguration, damit der Test maximal still ist. Das Spring Logo ist jetzt auch deaktiviert.
Dirk Olmes <dirk.olmes@codedo.de>
parents:
diff changeset
4 class="ch.qos.logback.core.ConsoleAppender">
5870f5695e43 Logging Konfiguration, damit der Test maximal still ist. Das Spring Logo ist jetzt auch deaktiviert.
Dirk Olmes <dirk.olmes@codedo.de>
parents:
diff changeset
5 <encoder>
5870f5695e43 Logging Konfiguration, damit der Test maximal still ist. Das Spring Logo ist jetzt auch deaktiviert.
Dirk Olmes <dirk.olmes@codedo.de>
parents:
diff changeset
6 <Pattern>
5870f5695e43 Logging Konfiguration, damit der Test maximal still ist. Das Spring Logo ist jetzt auch deaktiviert.
Dirk Olmes <dirk.olmes@codedo.de>
parents:
diff changeset
7 %36.-36logger{36} : %msg%n
5870f5695e43 Logging Konfiguration, damit der Test maximal still ist. Das Spring Logo ist jetzt auch deaktiviert.
Dirk Olmes <dirk.olmes@codedo.de>
parents:
diff changeset
8 </Pattern>
5870f5695e43 Logging Konfiguration, damit der Test maximal still ist. Das Spring Logo ist jetzt auch deaktiviert.
Dirk Olmes <dirk.olmes@codedo.de>
parents:
diff changeset
9 </encoder>
5870f5695e43 Logging Konfiguration, damit der Test maximal still ist. Das Spring Logo ist jetzt auch deaktiviert.
Dirk Olmes <dirk.olmes@codedo.de>
parents:
diff changeset
10 </appender>
5870f5695e43 Logging Konfiguration, damit der Test maximal still ist. Das Spring Logo ist jetzt auch deaktiviert.
Dirk Olmes <dirk.olmes@codedo.de>
parents:
diff changeset
11
5870f5695e43 Logging Konfiguration, damit der Test maximal still ist. Das Spring Logo ist jetzt auch deaktiviert.
Dirk Olmes <dirk.olmes@codedo.de>
parents:
diff changeset
12 <root level="ERROR">
5870f5695e43 Logging Konfiguration, damit der Test maximal still ist. Das Spring Logo ist jetzt auch deaktiviert.
Dirk Olmes <dirk.olmes@codedo.de>
parents:
diff changeset
13 <appender-ref ref="STDOUT" />
5870f5695e43 Logging Konfiguration, damit der Test maximal still ist. Das Spring Logo ist jetzt auch deaktiviert.
Dirk Olmes <dirk.olmes@codedo.de>
parents:
diff changeset
14 </root>
5870f5695e43 Logging Konfiguration, damit der Test maximal still ist. Das Spring Logo ist jetzt auch deaktiviert.
Dirk Olmes <dirk.olmes@codedo.de>
parents:
diff changeset
15 </configuration>