diff --git a/defaults/yacy.logging b/defaults/yacy.logging index f0e7cc967..3eaea30b2 100644 --- a/defaults/yacy.logging +++ b/defaults/yacy.logging @@ -92,6 +92,9 @@ org.apache.solr.search.SolrIndexSearcher.level = INFO org.apache.solr.update.processor.LogUpdateProcessor.level = OFF org.apache.solr.update.SolrIndexWriter.level = INFO +# Properties for the YaCy solr interface +net.yacy.cora.federate.solr.connector.SolrServerConnector.level = INFO + # java properties javax.management.misc.level = INFO javax.management.mbeanserver.level = INFO diff --git a/source/net/yacy/cora/federate/solr/connector/EmbeddedSolrConnector.java b/source/net/yacy/cora/federate/solr/connector/EmbeddedSolrConnector.java index 85f5b64f8..e4e036cfb 100644 --- a/source/net/yacy/cora/federate/solr/connector/EmbeddedSolrConnector.java +++ b/source/net/yacy/cora/federate/solr/connector/EmbeddedSolrConnector.java @@ -193,7 +193,7 @@ public class EmbeddedSolrConnector extends SolrServerConnector implements SolrCo QueryResponse rsp; rsp = this.server.query(params); if (q != null) Thread.currentThread().setName(threadname); - if (rsp != null) log.info(rsp.getResults().getNumFound() + " results for q=" + q); + if (rsp != null) log.debug(rsp.getResults().getNumFound() + " results for q=" + q); return rsp; } catch (SolrServerException e) { throw new IOException(e); diff --git a/source/net/yacy/search/Switchboard.java b/source/net/yacy/search/Switchboard.java index 9601694c1..693b7b362 100644 --- a/source/net/yacy/search/Switchboard.java +++ b/source/net/yacy/search/Switchboard.java @@ -982,7 +982,7 @@ public final class Switchboard extends serverSwitch { SwitchboardConstants.CRAWLJOB_REMOTE_TRIGGERED_CRAWL, "Remote Crawl Job", "thread that performes a single crawl/indexing step triggered by a remote peer", - "/IndexCreateWWWRemoteQueue_p.html", + "/IndexCreateQueues_p.html?stack=REMOTE", new InstantBusyThread( this.crawlQueues, SwitchboardConstants.CRAWLJOB_REMOTE_TRIGGERED_CRAWL_METHOD_START, @@ -1012,7 +1012,7 @@ public final class Switchboard extends serverSwitch { SwitchboardConstants.CRAWLJOB_LOCAL_CRAWL, "Local Crawl", "thread that performes a single crawl step from the local crawl queue", - "/IndexCreateWWWLocalQueue_p.html", + "/IndexCreateQueues_p.html?stack=LOCAL", new InstantBusyThread( this.crawlQueues, SwitchboardConstants.CRAWLJOB_LOCAL_CRAWL_METHOD_START,