Skip to content

Commit

Permalink
Add logback.xml to set logging level to INFO
Browse files Browse the repository at this point in the history
### What's done:
* Added logback.xml to diktat-ruleset
  • Loading branch information
petertrr committed Jun 29, 2022
1 parent 0351f52 commit e33bef9
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions diktat-ruleset/src/main/resources/logback.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
<configuration>
<appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender">
<encoder>
<pattern>%d{HH:mm:ss.SSS} [%thread] %-5level %logger{36} - %msg%n</pattern>
</encoder>
</appender>

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

0 comments on commit e33bef9

Please sign in to comment.