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:22:14 UTC

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

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

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


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

commit 15c0f97a59535f969c740065b13d9cff79d24db6
Author: markrmiller@gmail.com <ma...@gmail.com>
AuthorDate: Tue Mar 9 20:21:54 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());
       }
     }
   }