I'm getting the following logs during solr import via Java routine.
INFO: Creating new http client, config:maxConnections=128&maxConnectionsPerHost=32&followRedirects=false
This is the import code im using,
SolrServer server = new HttpSolrServer(Base_Url);
ModifiableSolrParams params = new ModifiableSolrParams();
params.set("command", "full-import");
params.set("clean", "true");
params.set("commit", "true");
params.set("optimize", "true");
QueryRequest request = new QueryRequest(params);
request.setPath("/dataimport");
server.request(request);
Is there a way to make this go away. I've done a lot of research already. Thanks