From 73ab4a7b3adf6ff1e10086199fa4324ecbc47da1 Mon Sep 17 00:00:00 2001 From: luccioman Date: Wed, 14 Jun 2017 08:56:11 +0200 Subject: [PATCH] Prevent log pollution from unwanted Solr warnings. Many non-blocking "java.nio.file.NoSuchFileException" traces with warning log level can be logged by Solr, especially when heavily crawling. This is issue is known from Solr 5.x but still unresolved with Solr 6.x ( https://issues.apache.org/jira/browse/SOLR-9120 ) Consequently upgraded to "SEVERE" the default log level of the related internal Solr class. See also mantis 727 ( http://mantis.tokeek.de/view.php?id=727 ) --- defaults/yacy.logging | 1 + 1 file changed, 1 insertion(+) diff --git a/defaults/yacy.logging b/defaults/yacy.logging index 33953eac6..e3662f9f5 100644 --- a/defaults/yacy.logging +++ b/defaults/yacy.logging @@ -99,6 +99,7 @@ org.apache.solr.rest.ManagedResource.level = SEVERE org.apache.solr.util.plugin.AbstractPluginLoader.level = INFO org.apache.solr.schema.IndexSchema.level = INFO org.apache.solr.schema.FieldTypePluginLoader.level = INFO +org.apache.solr.handler.admin.LukeRequestHandler.level = SEVERE org.apache.solr.handler.component.HttpShardHandlerFactory.level = SEVERE org.apache.solr.handler.component.QueryElevationComponent.level = SEVERE org.apache.solr.handler.component.SearchHandler.level = SEVERE