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.getNam

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

Logging inside a custom analyzer

2013-03-19 Thread Gian Maria Ricci
Hi to everyone, What is the best way to log information into solar from a custom analyzer? Is there any way to integrate log4j or is it better to use some solr logging method? Thanks again for your invaluable help Gian Maria