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

chapters.configuration.sample2.xml Maven / Gradle / Ivy

<?xml version="1.0" encoding="UTF-8" ?>
<configuration>

	<appender name="STDOUT"
            class="ch.qos.logback.core.ConsoleAppender">
    <!-- encoders are assigned by default the type
         ch.qos.logback.classic.encoder.PatternLayoutEncoder -->
    <encoder>
      <pattern>
        %d{HH:mm:ss.SSS} [%thread] %-5level %logger{36} - %msg%n
			</pattern>
    </encoder>
	</appender>

	<logger name="chapters.configuration" level="INFO" />

	<!-- Strictly speaking, the level attribute is not necessary since -->
	<!-- the level of the root level is set to DEBUG by default.       -->
	<root level="DEBUG">
		<appender-ref ref="STDOUT" />
	</root>

</configuration>




© 2015 - 2025 Weber Informatics LLC | Privacy Policy