Skip to content

Commit

Permalink
Remove noise from logs
Browse files Browse the repository at this point in the history
  • Loading branch information
matsbov committed Oct 17, 2023
1 parent 27e0c90 commit 24687ce
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions grails-app/conf/logback.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,14 @@
</encoder>
</appender>

<!-- SBDI: this is to get rid of noise in the logs -->
<logger name="org.grails.config.NavigableMap" level="ERROR">
<appender-ref ref="STDOUT" />
</logger>
<logger name="org.hibernate.orm.deprecation" level="ERROR">
<appender-ref ref="STDOUT" />
</logger>

<root level="warn">
<appender-ref ref="STDOUT" />
</root>
Expand Down

0 comments on commit 24687ce

Please sign in to comment.