Re: Log levels setting

2008-04-30 Thread David Smiley @MITRE.org
. Is there a way to isolate those request informations from the INFO log level ? Thanks for your comments and advices ! Jerome. -- View this message in context: http://www.nabble.com/Log-levels-setting-tp11361909p16988843.html Sent from the Solr - User mailing list archive

Log levels setting

2007-06-29 Thread Jérôme Etévé
Hi, is there a way to avoid going to the web interface to set up the solr log level ? I'm also a bit confused about the INFO log level. Actually it's very nice to see some startup info about the schema , solr home setting, customize modules loaded .. But also this INFO log levels gives two

Re: Log levels setting

2007-06-29 Thread gerard sychay
You can use CURL (or whatever you use for HTTP requests) to hit the URL's that you click on in the Solr Admin. So, for example, to turn logging off, you can hit the following URL using CURL. http://www.example.com:8983/solr/admin/action.jsp?log=OFF As for your second question, I actually

Re: Log levels setting

2007-06-29 Thread Chris Hostetter
: Hi, : is there a way to avoid going to the web interface to set up the solr : log level ? he web intrface for tweaking the log level is actually a miss-feature in my opinion ... it's a handy way to quickly crank the logging level up if something weird is happening nad you want to see why, but

Re: Log levels setting

2007-06-29 Thread Jérôme Etévé
On 6/29/07, Chris Hostetter [EMAIL PROTECTED] wrote: : Hi, : is there a way to avoid going to the web interface to set up the solr : log level ? he web intrface for tweaking the log level is actually a miss-feature in my opinion ... it's a handy way to quickly crank the logging level up if

RE: Log levels setting

2007-06-29 Thread Will Johnson
java.util.logging.ConsoleHandler.formatter = java.util.logging.SimpleFormatter -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Jérôme Etévé Sent: Friday, June 29, 2007 1:52 PM To: solr-user@lucene.apache.org Subject: Re: Log levels setting On 6/29/07

Re: Log levels setting

2007-06-29 Thread Chris Hostetter
: I'm using tomcat 6, does somebody has a snippet of conf file : to set up the log level for all org.apache.solr.* classes ? take a look at the java.util.logging section of this tomcat doc... http://tomcat.apache.org/tomcat-6.0-doc/logging.html -Hoss