Skip to content

Commit ccd3ef9

Browse files
committed
Changed log4j2 statusLogger level from info to warn
After bumping the log4j2 dependency to version 2.24.3 we started noticing extra logging output during the build. This issue has been reported at apache/logging-log4j2#3100 and is due to the change to the AbstractConfiguration class in apache/logging-log4j2#3043. As described in log4j2 issue apache#3100 and at https://logging.apache.org/log4j/2.x/manual/status-logger.html the status configuration element is now deprecated and we are advised to use a system property instead. Closes apache#5453
1 parent 37ae92f commit ccd3ef9

File tree

14 files changed

+14
-14
lines changed

14 files changed

+14
-14
lines changed

assemble/conf/log4j2-service.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
## Log4j2 file that configures logging for all Accumulo services
2121
## The system properties referenced below are configured by accumulo-env.sh
2222

23-
status = info
23+
status = warn
2424
dest = err
2525
name = AccumuloServiceLoggingProperties
2626
monitorInterval = 30

assemble/conf/log4j2.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919

2020
## Log4j2 file that configures logging for processes other than Accumulo services
2121

22-
status = info
22+
status = warn
2323
dest = err
2424
name = AccumuloDefaultLoggingProperties
2525
monitorInterval = 30

core/src/test/resources/log4j2-test.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
# under the License.
1818
#
1919

20-
status = info
20+
status = warn
2121
dest = err
2222
name = AccumuloCoreTestLoggingProperties
2323

hadoop-mapreduce/src/test/resources/log4j2-test.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
# under the License.
1818
#
1919

20-
status = info
20+
status = warn
2121
dest = err
2222
name = AccumuloHadoopMapReduceTestLoggingProperties
2323

iterator-test-harness/src/test/resources/log4j2-test.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
# under the License.
1818
#
1919

20-
status = info
20+
status = warn
2121
dest = err
2222
name = AccumuloIteratorTestHarnessTestLoggingProperties
2323

minicluster/src/test/resources/log4j2-test.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
# under the License.
1818
#
1919

20-
status = info
20+
status = warn
2121
dest = err
2222
name = AccumuloMiniclusterTestLoggingProperties
2323

server/base/src/test/resources/log4j2-test.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
# under the License.
1818
#
1919

20-
status = info
20+
status = warn
2121
dest = err
2222
name = AccumuloServerBaseTestLoggingProperties
2323

server/gc/src/test/resources/log4j2-test.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
# under the License.
1818
#
1919

20-
status = info
20+
status = warn
2121
dest = err
2222
name = AccumuloGcTestLoggingProperties
2323

server/manager/src/test/resources/log4j2-test.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
# under the License.
1818
#
1919

20-
status = info
20+
status = warn
2121
dest = err
2222
name = AccumuloManagerTestLoggingProperties
2323

server/monitor/src/test/resources/log4j2-test.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
# under the License.
1818
#
1919

20-
status = info
20+
status = warn
2121
dest = err
2222
name = AccumuloMonitorTestLoggingProperties
2323

0 commit comments

Comments
 (0)