Remove unused example logback.xml (#140)

This commit is contained in:
Stephan Schnabel 2023-05-09 08:55:10 +02:00 committed by GitHub
parent a5cc2611a6
commit d582499c5c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 6 additions and 21 deletions

View file

@ -4,14 +4,14 @@ If no `logback.xml` by user is provided a default [logback.xml](../../src/main/r
```xml
<?xml version="1.0" encoding="UTF-8"?>
<configuration debug="true" scan="false">
<configuration debug="false" scan="false">
<include resource="io/kokuwa/logback/base.xml" />
<logger name="io.micronaut.logging.PropertiesLoggingLevelsConfigurer" levels="WARN" />
<root level="INFO">
<appender-ref ref="${LOGBACK_APPENDER:-CONSOLE}" />
<autoAppender />
</root>
</configuration>

View file

@ -16,9 +16,6 @@
{
"pattern": "\\Qio/kokuwa/logback/logback-default.xml\\E"
},
{
"pattern": "\\Qio/kokuwa/logback/logback-example.xml\\E"
},
{
"pattern": "\\QMETA-INF/services/ch.qos.logback.classic.spi.Configurator\\E"
}

View file

@ -1,12 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<configuration debug="true" scan="false">
<include resource="io/kokuwa/logback/base.xml" />
<logger name="io.micronaut.logging.PropertiesLoggingLevelsConfigurer" levels="WARN" />
<root level="INFO">
<appender-ref ref="${LOGBACK_APPENDER:-CONSOLE}" />
</root>
</configuration>