Github user diegoceccarelli commented on a diff in the pull request: https://github.com/apache/lucene-solr/pull/202#discussion_r139309859 --- Diff: solr/solrj/src/java/org/apache/solr/common/util/IOUtils.java --- @@ -31,7 +32,7 @@ public static void closeQuietly(Closeable closeable) { closeable.close(); } } catch (Exception e) { - LOG.error("Error while closing", e); + SolrException.log(LOG, "Error while closing "+closeable.getClass()); --- End diff -- I had to modify the logging here in order to have `ignoreException` working in the tests.
--- --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@lucene.apache.org For additional commands, e-mail: dev-h...@lucene.apache.org