Skip to content

Commit

Permalink
fix(logback): Adding logback.xml to maestro-client main to avoid DEBU…
Browse files Browse the repository at this point in the history
…G messages on every command (#2207)

adding logback-test to the main to avoid DEBUG message on every execution
  • Loading branch information
felipeduartea authored Dec 18, 2024
1 parent d7f847d commit 801e08c
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions maestro-cli/src/main/resources/logback-test.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
<configuration>
<appender name="CONSOLE" class="ch.qos.logback.core.ConsoleAppender">
<encoder>
<pattern>[%-5level] %logger{36} - %msg%n</pattern>
</encoder>
</appender>

<logger name="io.micrometer.common.util.internal.logging" level="WARN" />

<logger name="CONSOLE" level="INFO">
<appender-ref ref="CONSOLE" />
</logger>

<root level="INFO">
<appender-ref ref="CONSOLE" />
</root>
</configuration>

0 comments on commit 801e08c

Please sign in to comment.