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,15 +4,15 @@ 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" />
<include resource="io/kokuwa/logback/base.xml" />
<logger name="io.micronaut.logging.PropertiesLoggingLevelsConfigurer" levels="WARN" />
<logger name="io.micronaut.logging.PropertiesLoggingLevelsConfigurer" levels="WARN" />
<root level="INFO">
<appender-ref ref="${LOGBACK_APPENDER:-CONSOLE}" />
</root>
<root level="INFO">
<autoAppender />
</root>
</configuration>
```