- fix monitor url of crawl job in PerformanceQueues_p.html

- reduce logging of every index add  (switch embeddedsolr.add from info to debug)
pull/1/head
reger 12 years ago
parent 442ed50be0
commit 4fc6837690

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

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

Loading…
Cancel
Save