mirror of
https://gitlab.com/spectre.app/cli.git
synced 2024-11-01 10:51:44 +01:00
Make log level configurable with -Dlog.level, default to INFO. Thanks @pitpalme.
This commit is contained in:
parent
089b795cf2
commit
a0ff625af2
1 changed files with 2 additions and 2 deletions
|
@ -1,4 +1,4 @@
|
|||
<configuration scan="true">
|
||||
<configuration scan="false">
|
||||
|
||||
<appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender">
|
||||
<layout class="ch.qos.logback.classic.PatternLayout">
|
||||
|
@ -6,7 +6,7 @@
|
|||
</layout>
|
||||
</appender>
|
||||
|
||||
<logger name="com.lyndir" level="TRACE" />
|
||||
<logger name="com.lyndir" level="${log.level:-INFO}" />
|
||||
|
||||
<root level="INFO">
|
||||
<appender-ref ref="STDOUT" />
|
||||
|
|
Loading…
Reference in a new issue