mirror of
https://github.com/corda/corda.git
synced 2024-12-18 20:47:57 +00:00
Fixed broken default logging level. (#4129)
This commit is contained in:
parent
6022cecca5
commit
34cadc4264
@ -1,13 +1,13 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<Configuration status="debug">
|
<Configuration status="info">
|
||||||
|
|
||||||
<Properties>
|
<Properties>
|
||||||
<Property name="log-path">${sys:log-path:-logs}</Property>
|
<Property name="log-path">${sys:log-path:-logs}</Property>
|
||||||
<Property name="log-name">node-${hostName}</Property>
|
<Property name="log-name">node-${hostName}</Property>
|
||||||
<Property name="archive">${log-path}/archive</Property>
|
<Property name="archive">${log-path}/archive</Property>
|
||||||
<Property name="defaultLogLevel">${sys:log4j2.level:-info}</Property>
|
<Property name="defaultLogLevel">${sys:log4j2.level:-info}</Property>
|
||||||
<Property name="consoleLogLevel">${sys:consoleLogLevel:-$defaultLogLevel}</Property>
|
<Property name="consoleLogLevel">${sys:consoleLogLevel:-error}</Property>
|
||||||
<Property name="fileLogLevel">${sys:fileLogLevel:-$defaultLogLevel}</Property>
|
<Property name="fileLogLevel">${sys:fileLogLevel:-${defaultLogLevel}}</Property>
|
||||||
</Properties>
|
</Properties>
|
||||||
|
|
||||||
<Appenders>
|
<Appenders>
|
||||||
|
Loading…
Reference in New Issue
Block a user