You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by ds...@apache.org on 2020/05/28 15:34:33 UTC

[lucene-solr] branch branch_8x updated: SOLR-11934: REVERT addition of collection to log message This reverts commit e4dc9e94

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

dsmiley 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 5d4b0e3  SOLR-11934: REVERT addition of collection to log message This reverts commit e4dc9e94
5d4b0e3 is described below

commit 5d4b0e3d11db7126784d3cb7c20232f6fce6c0d4
Author: David Smiley <ds...@apache.org>
AuthorDate: Thu May 28 11:31:11 2020 -0400

    SOLR-11934: REVERT addition of collection to log message
    This reverts commit e4dc9e94
    
    (cherry picked from commit 596c64a01ea21b92f4b9218427e3223c72e40b55)
---
 solr/core/src/java/org/apache/solr/core/SolrCore.java | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/solr/core/src/java/org/apache/solr/core/SolrCore.java b/solr/core/src/java/org/apache/solr/core/SolrCore.java
index 9ce4b2f..d7791c6 100644
--- a/solr/core/src/java/org/apache/solr/core/SolrCore.java
+++ b/solr/core/src/java/org/apache/solr/core/SolrCore.java
@@ -2542,9 +2542,7 @@ public final class SolrCore implements SolrInfoBean, SolrMetricProducer, Closeab
         newSearcher.register(); // register subitems (caches)
 
         if (log.isInfoEnabled()) {
-          log.info("{} Registered new searcher autowarm time: {} ms: Collection: '{}'"
-              , logid, newSearcher.getWarmupTime()
-              , newSearcher.getCore().getCoreDescriptor().getCollectionName());
+          log.info("{} Registered new searcher autowarm time: {} ms", logid, newSearcher.getWarmupTime());
         }
 
       } catch (Exception e) {