Skip to content

Commit

Permalink
fix: Fix logging properties for mvn test.
Browse files Browse the repository at this point in the history
  • Loading branch information
bgrozev committed Oct 24, 2024
1 parent 28e046e commit 8f09b35
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@
<version>${surefire.version}</version>
<configuration>
<systemPropertyVariables>
<java.util.logging.config.file>${project.basedir}/logging.properties</java.util.logging.config.file>
<java.util.logging.config.file>${project.basedir}/src/test/resources/logging.properties</java.util.logging.config.file>
<kotest.framework.classpath.scanning.autoscan.disable>true</kotest.framework.classpath.scanning.autoscan.disable>
</systemPropertyVariables>
</configuration>
Expand Down
6 changes: 6 additions & 0 deletions src/test/resources/logging.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
handlers= java.util.logging.ConsoleHandler
java.util.logging.ConsoleHandler.level = ALL
java.util.logging.ConsoleHandler.formatter = org.jitsi.utils.logging2.JitsiLogFormatter
org.jitsi.utils.logging2.JitsiLogFormatter.programname=JMR

.level=INFO

0 comments on commit 8f09b35

Please sign in to comment.