Skip to content

Latest commit

 

History

History
16 lines (11 loc) · 522 Bytes

logback_default.md

File metadata and controls

16 lines (11 loc) · 522 Bytes

Add default logback.xml

If no logback.xml by user is provided a default logback.xml is loaded. Otherwise use custom logback.xml:

<?xml version="1.0" encoding="UTF-8"?>
<configuration debug="false" scan="false">

  <logger name="io.micronaut.logging.PropertiesLoggingLevelsConfigurer" levels="WARN" />

  <root level="INFO">
    <autoAppender />
  </root>

</configuration>