Skip to content

Commit

Permalink
logging fix
Browse files Browse the repository at this point in the history
  • Loading branch information
gsingers committed Jul 22, 2012
1 parent b57ef28 commit 797f428
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions src/main/java/com/tamingtext/qa/WikipediaWexIndexer.java
Original file line number Diff line number Diff line change
Expand Up @@ -34,19 +34,18 @@
import org.apache.commons.cli2.builder.DefaultOptionBuilder;
import org.apache.commons.cli2.builder.GroupBuilder;
import org.apache.commons.cli2.commandline.Parser;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.apache.lucene.benchmark.byTask.feeds.DocData;
import org.apache.lucene.benchmark.byTask.feeds.NoMoreDataException;
import org.apache.lucene.benchmark.byTask.utils.Config;
import org.apache.mahout.common.CommandLineUtil;
import org.apache.solr.client.solrj.SolrServer;
import org.apache.solr.client.solrj.impl.CommonsHttpSolrServer;
import org.apache.solr.common.SolrInputDocument;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

public class WikipediaWexIndexer {
private transient static Log log = LogFactory
.getLog(WikipediaWexIndexer.class);
private transient static Logger log = LoggerFactory.getLogger(WikipediaWexIndexer.class);

private SolrServer server;
public static final String DEFAULT_SOLR_URL = "http://localhost:8983/solr";
Expand Down

0 comments on commit 797f428

Please sign in to comment.