You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by er...@apache.org on 2020/04/23 11:52:28 UTC

[lucene-solr] branch branch_8x updated: SOLR-12690: Regularize LoggerFactory declarations. Fixing an incorrect change

This is an automated email from the ASF dual-hosted git repository.

erick pushed a commit to branch branch_8x
in repository https://gitbox.apache.org/repos/asf/lucene-solr.git


The following commit(s) were added to refs/heads/branch_8x by this push:
     new eb8d3d3  SOLR-12690: Regularize LoggerFactory declarations. Fixing an incorrect change
eb8d3d3 is described below

commit eb8d3d3a0f2e039a64e74b296eb64da2ae530800
Author: Erick Erickson <Er...@gmail.com>
AuthorDate: Thu Apr 23 07:52:21 2020 -0400

    SOLR-12690: Regularize LoggerFactory declarations. Fixing an incorrect change
---
 .../java/org/apache/solr/metrics/reporters/solr/SolrShardReporter.java  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/solr/core/src/java/org/apache/solr/metrics/reporters/solr/SolrShardReporter.java b/solr/core/src/java/org/apache/solr/metrics/reporters/solr/SolrShardReporter.java
index 656a288..bdf91f3 100644
--- a/solr/core/src/java/org/apache/solr/metrics/reporters/solr/SolrShardReporter.java
+++ b/solr/core/src/java/org/apache/solr/metrics/reporters/solr/SolrShardReporter.java
@@ -63,7 +63,7 @@ public class SolrShardReporter extends SolrCoreReporter {
   private static final Logger log = LoggerFactory.getLogger(MethodHandles.lookup().lookupClass());
 
   public static final List<String> DEFAULT_FILTERS = new ArrayList(){{
-    add("Tlog.*");
+    add("TLOG.*");
     add("CORE\\.fs.*");
     add("REPLICATION.*");
     add("INDEX\\.flush.*");