mirror of
https://github.com/ysoftdevs/nuget-repository-indexer.git
synced 2026-03-17 23:04:22 +01:00
19 lines
535 B
XML
19 lines
535 B
XML
<configuration>
|
|
|
|
<appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender">
|
|
<encoder>
|
|
<pattern>%level / %d - [%thread] %logger - %message%n%xException</pattern>
|
|
</encoder>
|
|
</appender>
|
|
|
|
<!--
|
|
The logger name is typically the Java package name.
|
|
This configures the log level to log at for a package and its children packages.
|
|
<logger name="application" level="DEBUG" />
|
|
-->
|
|
<root level="INFO">
|
|
<appender-ref ref="STDOUT" />
|
|
</root>
|
|
|
|
</configuration>
|