Skip to content

Commit

Permalink
Prevent log pollution from unwanted Solr warnings.
Browse files Browse the repository at this point in the history
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 )
  • Loading branch information
luccioman committed Jun 14, 2017
1 parent c94a8c7 commit 73ab4a7
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions defaults/yacy.logging
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -99,6 +99,7 @@ org.apache.solr.rest.ManagedResource.level = SEVERE
org.apache.solr.util.plugin.AbstractPluginLoader.level = INFO org.apache.solr.util.plugin.AbstractPluginLoader.level = INFO
org.apache.solr.schema.IndexSchema.level = INFO org.apache.solr.schema.IndexSchema.level = INFO
org.apache.solr.schema.FieldTypePluginLoader.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.HttpShardHandlerFactory.level = SEVERE
org.apache.solr.handler.component.QueryElevationComponent.level = SEVERE org.apache.solr.handler.component.QueryElevationComponent.level = SEVERE
org.apache.solr.handler.component.SearchHandler.level = SEVERE org.apache.solr.handler.component.SearchHandler.level = SEVERE
Expand Down

0 comments on commit 73ab4a7

Please sign in to comment.