Skip to content
This repository was archived by the owner on Jul 1, 2025. It is now read-only.

Commit a2f24f8

Browse files
macfarlagaryschulte
authored andcommitted
log4j conf: replace status (deprecated) with level (#8087)
Signed-off-by: Sally MacFarlane <[email protected]>
1 parent 6f74fc8 commit a2f24f8

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

acceptance-tests/tests/src/test/resources/log4j2.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<Configuration status="WARN" monitorInterval="30">
2+
<Configuration level="WARN" monitorInterval="30">
33
<Properties>
44
<Property name="root.log.level">INFO</Property>
55
</Properties>

besu/src/main/resources/log4j2.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<Configuration status="WARN">
2+
<Configuration level="WARN">
33
<Properties>
44
<Property name="root.log.level">${env:LOG_LEVEL:-INFO}</Property>
55
<Property name="root.log.logger">${env:LOGGER:-Console}</Property>

consensus/qbft-core/src/integration-test/resources/log4j2.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<Configuration status="WARN">
2+
<Configuration level="WARN">
33
<Properties>
44
<Property name="root.log.level">DEBUG</Property>
55
</Properties>

ethereum/evmtool/src/main/resources/log4j2.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<Configuration status="WARN">
2+
<Configuration level="WARN">
33
<Properties>
44
<Property name="root.log.level">INFO</Property>
55
</Properties>

testutil/src/main/resources/log4j2-test.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<Configuration status="WARN">
2+
<Configuration level="WARN">
33
<Properties>
44
<Property name="root.log.level">INFO</Property>
55
<Property name="console.pattern">%d{yyyy-MM-dd HH:mm:ss.SSSZZZ} | %t | %-5level | %c{1} | %msg</Property>

0 commit comments

Comments
 (0)