rosetta.code-generators.test-helper.11.22.4.source-code.logback-test.xml Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of test-helper Show documentation
Show all versions of test-helper Show documentation
Test infrastructure for Rosetta code generators
<?xml version="1.0" encoding="UTF-8"?> <configuration> <!-- Send debug messages to System.out --> <appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender"> <!-- By default, encoders are assigned the type ch.qos.logback.classic.encoder.PatternLayoutEncoder --> <encoder> <pattern>%-5level %logger{15} - %msg%n</pattern> </encoder> </appender> <logger name="com.regnosys" level="DEBUG" /> <logger name="com.rosetta" level="DEBUG" /> <!-- By default, the level of the root level is set to DEBUG --> <root level="INFO"> <appender-ref ref="STDOUT" /> </root> </configuration>