Skip to content

Commit

Permalink
Remove DEBUG log level from test cluster node
Browse files Browse the repository at this point in the history
The linked issue was closed in 2019 (pre-fork) so I'm going to remove these log
levels. If anyone complains about missing logs in test environments we can add
them again.

Signed-off-by: Andrew Ross <[email protected]>
  • Loading branch information
andrross committed Jan 29, 2025
1 parent fd37ac8 commit d0f1b2c
Showing 1 changed file with 0 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1188,10 +1188,6 @@ private void createConfiguration() {
// Don't wait for state, just start up quickly. This will also allow new and old nodes in the BWC case to become the master
baseConfig.put("discovery.initial_state_timeout", "0s");

// TODO: Remove these once https://github.com/elastic/elasticsearch/issues/46091 is fixed
baseConfig.put("logger.org.opensearch.action.support.master", "DEBUG");
baseConfig.put("logger.org.opensearch.cluster.coordination", "DEBUG");

HashSet<String> overriden = new HashSet<>(baseConfig.keySet());
overriden.retainAll(settings.keySet());
OVERRIDABLE_SETTINGS.forEach(overriden::remove);
Expand Down

0 comments on commit d0f1b2c

Please sign in to comment.