RE: Logging inside a custom analyzer

2013-03-22 Thread Gian Maria Ricci
: Logging inside a custom analyzer what do you mean log information into solar from a custom analyzer? Have info go from your custom analyzer into the Solr log? In which case, just do something like: private static final Logger log = LoggerFactory.getLogger(YourPrivateClass.class.getName

Re: Logging inside a custom analyzer

2013-03-19 Thread Erick Erickson
what do you mean log information into solar from a custom analyzer? Have info go from your custom analyzer into the Solr log? In which case, just do something like: private static final Logger log = LoggerFactory.getLogger(YourPrivateClass.class.getName()); and then in your code something like