Skip to content

Commit

Permalink
akka-loader: default logging
Browse files Browse the repository at this point in the history
  • Loading branch information
Blackmorse committed Feb 18, 2024
1 parent 9e2a826 commit af17f9d
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 2 deletions.
3 changes: 1 addition & 2 deletions akka-loader/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,4 @@ project/metals.sbt


conf/application.conf
src/main/resources/application.conf
src/main/resources/logback.xml
src/main/resources/application.conf
17 changes: 17 additions & 0 deletions akka-loader/src/main/resources/logback.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
<configuration>

<appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender">
<filter class="ch.qos.logback.classic.filter.ThresholdFilter">
<level>INFO</level>
</filter>
<encoder>
<pattern>%d{dd-MM-yyyy HH:mm:ss.SSS} %magenta([%thread]) %highlight(%-5level) %logger{36}.%M - %msg%n
</pattern>
</encoder>
</appender>

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

</configuration>

0 comments on commit af17f9d

Please sign in to comment.