I agree with you Jerome. It seems to me that the SolrCore.execute() should
log at DEBUG level (aka "FINE" in JUL parlance), not INFO. I too don't want
to raise the log level to WARN which would throw out the baby with the bath
water. For now, I'm just going to modify SolrCore line 958 since I'm
: 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
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
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
so
: 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 t
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 have