Merge branch 'master' of ssh://git@gitorious.org/yacy/rc1.git

This commit is contained in:
orbiter 2013-05-10 12:02:40 +02:00
commit a83c2fe833
3 changed files with 6 additions and 3 deletions

View File

@ -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

View File

@ -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);

View File

@ -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,