Skip to content

Commit

Permalink
test: Replace deprecated logback conversionRule attribute
Browse files Browse the repository at this point in the history
[converterClass] attribute is deprecated and replaced by [class].
  • Loading branch information
matrei committed Oct 22, 2024
1 parent e6a3d2b commit 99afcfc
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<configuration>

<conversionRule conversionWord="clr" converterClass="org.springframework.boot.logging.logback.ColorConverter" />
<conversionRule conversionWord="wex" converterClass="org.springframework.boot.logging.logback.WhitespaceThrowableProxyConverter" />
<conversionRule conversionWord="clr" class="org.springframework.boot.logging.logback.ColorConverter" />
<conversionRule conversionWord="wex" class="org.springframework.boot.logging.logback.WhitespaceThrowableProxyConverter" />

<appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender">
<withJansi>true</withJansi>
Expand Down

0 comments on commit 99afcfc

Please sign in to comment.