All Downloads are FREE. Search and download functionalities are using the official Maven repository.

viercailloux.plaquette-mido.0.0.22.source-code.logback.xml Maven / Gradle / Ivy

The newest version!
<?xml version="1.0" encoding="UTF-8"?>
<configuration
	xmlns="http://ch.qos.logback/xml/ns/logback"
	xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
	xsi:schemaLocation="http://ch.qos.logback/xml/ns/logback https://raw.githubusercontent.com/enricopulatzo/logback-XSD/master/src/main/xsd/logback.xsd">
	<appender name="STDOUT"
		class="ch.qos.logback.core.ConsoleAppender">
		<encoder>
			<pattern>%d{HH:mm:ss.SSS} [%thread] %-5level %logger{36} - %msg%n
			</pattern>
		</encoder>
		<filter class="ch.qos.logback.classic.filter.ThresholdFilter">
			<level>INFO</level>
		</filter>
	</appender>

	<appender name="File" class="ch.qos.logback.core.FileAppender">
		<file>out.log</file>
		<append>false</append>
		<encoder>
			<pattern>%d{HH:mm:ss.SSS} [%thread] %-5level %logger{36} - %msg%n
			</pattern>
		</encoder>
	</appender>

	<root level="DEBUG">
		<appender-ref ref="STDOUT" />
		<appender-ref ref="File" />
	</root>

	<!-- We do not want to log DB information (which could be sensible) so that 
		the logs can be published. -->
	<logger
		name="io.github.oliviercailloux.plaquette_mido_soap.Querier"
		level="OFF">
	</logger>
	<logger name="org.apache.fop" level="INFO">
	</logger>
</configuration>




© 2015 - 2025 Weber Informatics LLC | Privacy Policy