You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by ma...@apache.org on 2021/03/10 02:21:46 UTC

[lucene-solr] branch reference_impl_dev updated: @1440 Debug logging.

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

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


The following commit(s) were added to refs/heads/reference_impl_dev by this push:
     new 9be0632  @1440 Debug logging.
9be0632 is described below

commit 9be06328e4cdd5662b9a0ed5b965960c137e6c4c
Author: markrmiller@gmail.com <ma...@gmail.com>
AuthorDate: Tue Mar 9 20:21:25 2021 -0600

    @1440 Debug logging.
    
    Took 4 minutes
---
 solr/core/src/java/org/apache/solr/core/CoreContainer.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/solr/core/src/java/org/apache/solr/core/CoreContainer.java b/solr/core/src/java/org/apache/solr/core/CoreContainer.java
index e3b9e0c..cfcd396 100644
--- a/solr/core/src/java/org/apache/solr/core/CoreContainer.java
+++ b/solr/core/src/java/org/apache/solr/core/CoreContainer.java
@@ -2378,7 +2378,7 @@ public class CoreContainer implements Closeable {
       try {
         Files.delete(file);
       } catch (IOException e) {
-        log.info("Could not delete file {} {} {}", file, e.getClass().getName(), e.getMessage());
+        log.debug("Could not delete file {} {} {}", file, e.getClass().getName(), e.getMessage());
       }
     }
   }