From c15cd33c8860a49a25f462f7d8630ded508bd4e8 Mon Sep 17 00:00:00 2001 From: Ryan Ernst Date: Mon, 1 Jun 2020 18:00:40 -0700 Subject: [PATCH] Remove DEBUG-level logging from actions in docker (#57389) In #51459 DEBUG-level logging was removed from the default log4j configuration. However, our docker build has its own log4j configuration which was missed in that change. This commit removes the same from the docker log4j configuration. relates #51459 relates #51198 --- distribution/docker/src/docker/config/log4j2.properties | 4 ---- distribution/docker/src/docker/config/oss/log4j2.properties | 4 ---- 2 files changed, 8 deletions(-) diff --git a/distribution/docker/src/docker/config/log4j2.properties b/distribution/docker/src/docker/config/log4j2.properties index 6727192999c..d8594dcbc3e 100644 --- a/distribution/docker/src/docker/config/log4j2.properties +++ b/distribution/docker/src/docker/config/log4j2.properties @@ -1,9 +1,5 @@ status = error -# log action execution errors for easier debugging -logger.action.name = org.elasticsearch.action -logger.action.level = debug - appender.rolling.type = Console appender.rolling.name = rolling appender.rolling.layout.type = ESJsonLayout diff --git a/distribution/docker/src/docker/config/oss/log4j2.properties b/distribution/docker/src/docker/config/oss/log4j2.properties index 73420a047ed..a52e500310b 100644 --- a/distribution/docker/src/docker/config/oss/log4j2.properties +++ b/distribution/docker/src/docker/config/oss/log4j2.properties @@ -1,9 +1,5 @@ status = error -# log action execution errors for easier debugging -logger.action.name = org.elasticsearch.action -logger.action.level = debug - appender.rolling.type = Console appender.rolling.name = rolling appender.rolling.layout.type = ESJsonLayout