-
Notifications
You must be signed in to change notification settings - Fork 60
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(logback): only use logback config in standalone server (#667)
* fix deprecated pattern layout * rename to logback-standalone.xml as to not override any default logback.xml files * add env var to byo config file fix #403 and #658
- Loading branch information
1 parent
4e3819d
commit 68664e8
Showing
4 changed files
with
31 additions
and
28 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<configuration> | ||
<appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender"> | ||
<encoder> | ||
<pattern> | ||
%d{yyyy-MM-dd HH:mm:ss} [%thread] %-5level %logger{70} - %msg%n | ||
</pattern> | ||
</encoder> | ||
</appender> | ||
|
||
<logger name="io.netty" level="info" /> | ||
|
||
<variable name="LOG_LEVEL" value="${LOG_LEVEL:-DEBUG}" /> | ||
<root level="${LOG_LEVEL}"> | ||
<appender-ref ref="STDOUT"/> | ||
</root> | ||
</configuration> |
This file was deleted.
Oops, something went wrong.