bdd.report.0.1.0.source-code.logback.xml Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of report Show documentation
Show all versions of report Show documentation
Generate the report and feature file / documentation
The newest version!
<!-- ~ Smart BDD - The smart way to do behavior-driven development. ~ Copyright (C) 2021 James Bayliss ~ ~ This program is free software: you can redistribute it and/or modify ~ it under the terms of the GNU General Public License as published by ~ the Free Software Foundation, either version 3 of the License, or ~ (at your option) any later version. ~ ~ This program is distributed in the hope that it will be useful, ~ but WITHOUT ANY WARRANTY; without even the implied warranty of ~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ~ GNU General Public License for more details. ~ ~ You should have received a copy of the GNU General Public License ~ along with this program. If not, see <https://www.gnu.org/licenses/>. --> <configuration> <appender name="CONSOLE" class="ch.qos.logback.core.ConsoleAppender"> <layout class="ch.qos.logback.classic.PatternLayout"> <Pattern> %d{HH:mm:ss.SSS} [%t] %-5level %logger{36} - %msg%n </Pattern> </layout> </appender> <logger name="org.thymeleaf" level="warn" additivity="false"> <appender-ref ref="CONSOLE"/> </logger> <logger name="ch.qos.logback" level="warn" additivity="false"> <appender-ref ref="CONSOLE"/> </logger> <root level="debug"> <appender-ref ref="CONSOLE"/> </root> <statusListener class="ch.qos.logback.core.status.NopStatusListener" /> </configuration>