Initial commit

This commit is contained in:
Šesták Vít
2020-01-31 14:48:19 +01:00
commit a48c57ef09
24 changed files with 1337 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
<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>