Skip to content

Commit

Permalink
Merge pull request #124 from codacy/fix/disable-debug-level-by-default
Browse files Browse the repository at this point in the history
Disables debug level logs by default
  • Loading branch information
bmbferreira authored Jul 23, 2019
2 parents 9520009 + dcf7466 commit 99ed322
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions src/main/resources/logback.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
<configuration>

<appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender">
<encoder>
<pattern>%date %-16level %-10.-10logger %message %n</pattern>
</encoder>
</appender>

<logger name="application" level="INFO"/>

<root level="INFO">
<appender-ref ref="STDOUT"/>
</root>

</configuration>

0 comments on commit 99ed322

Please sign in to comment.