Re: logging off

2007-03-05 Thread Bill Au
FYI, the admin page has a link, [LOGGING], that can be use to change Solr's logging on the fly. Bill On 3/4/07, Chris Hostetter <[EMAIL PROTECTED]> wrote: : Hi Brian, all you have to do is create a logging.properties file and : call this before starting up solr: : : System.setProperty("java.u

Re: logging off

2007-03-03 Thread Chris Hostetter
: Hi Brian, all you have to do is create a logging.properties file and : call this before starting up solr: : : System.setProperty("java.util.logging.config.file", home+"/conf/ : logging.properties"); it's not neccessary to execute any javacode to configurate java.util.logging ... that property c

Re: logging off

2007-03-03 Thread gmail
sweet. the logging is java logging... (not one i really know how to deal with) Can you try setting system property like this: http://www.exampledepot.com/egs/java.util.logging/Props.html Brian Whitman wrote: I'm trying to disable all logging from Solr, or at least re-route it to a file. I

Re: logging off

2007-03-03 Thread Brian Whitman
On Mar 3, 2007, at 12:56 PM, Brian Whitman wrote: I'm trying to disable all logging from Solr, or at least re-route it to a file. Hi Brian, all you have to do is create a logging.properties file and call this before starting up solr: System.setProperty("java.util.logging.config.file",

logging off

2007-03-03 Thread Brian Whitman
I'm trying to disable all logging from Solr, or at least re-route it to a file. I was finally able to disable Jetty logging through a custom org.mortbay.log.Logger class, but I am still seeing the Solr logs, which seem to come from java.util.logging.Logger. Is there a thing I can do in so