mirror of
https://git.krews.org/morningstar/Arcturus-Community.git
synced 2024-11-22 23:10:52 +01:00
Added logback xml because it was ignored somehow.
This commit is contained in:
parent
a0582c09ee
commit
1bd9db75a6
1
.gitignore
vendored
1
.gitignore
vendored
@ -6,7 +6,6 @@ target/**
|
|||||||
TODO.txt
|
TODO.txt
|
||||||
packet.pkt
|
packet.pkt
|
||||||
plugins/**
|
plugins/**
|
||||||
src/main/resources/
|
|
||||||
src/test/
|
src/test/
|
||||||
target/
|
target/
|
||||||
config.ini
|
config.ini
|
||||||
|
21
src/main/resources/logback.xml
Normal file
21
src/main/resources/logback.xml
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<configuration>
|
||||||
|
<appender name="Console" class="ch.qos.logback.core.ConsoleAppender">
|
||||||
|
<withJansi>false</withJansi>
|
||||||
|
<encoder>
|
||||||
|
<pattern>%d{HH:mm:ss.SSS} [%-14thread] %highlight(%-5level) %cyan(%-36logger{36}) - %msg%n</pattern>
|
||||||
|
</encoder>
|
||||||
|
</appender>
|
||||||
|
|
||||||
|
<logger name="io.netty">
|
||||||
|
<level value="info"/>
|
||||||
|
</logger>
|
||||||
|
|
||||||
|
<logger name="com.zaxxer.hikari">
|
||||||
|
<level value="error"/>
|
||||||
|
</logger>
|
||||||
|
|
||||||
|
<root level="info">
|
||||||
|
<appender-ref ref="Console" />
|
||||||
|
</root>
|
||||||
|
</configuration>
|
Loading…
Reference in New Issue
Block a user