Fixed broken default logging level. (#4129)

This commit is contained in:
Michele Sollecito 2018-10-29 16:21:35 +00:00 committed by GitHub
parent 6022cecca5
commit 34cadc4264
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,13 +1,13 @@
<?xml version="1.0" encoding="UTF-8"?>
<Configuration status="debug">
<Configuration status="info">
<Properties>
<Property name="log-path">${sys:log-path:-logs}</Property>
<Property name="log-name">node-${hostName}</Property>
<Property name="archive">${log-path}/archive</Property>
<Property name="defaultLogLevel">${sys:log4j2.level:-info}</Property>
<Property name="consoleLogLevel">${sys:consoleLogLevel:-$defaultLogLevel}</Property>
<Property name="fileLogLevel">${sys:fileLogLevel:-$defaultLogLevel}</Property>
<Property name="consoleLogLevel">${sys:consoleLogLevel:-error}</Property>
<Property name="fileLogLevel">${sys:fileLogLevel:-${defaultLogLevel}}</Property>
</Properties>
<Appenders>