On 10/11/2013 4:55 AM, Peter Schmidt wrote: > So the main problem was that the libs must be copied to the WEB-INF/lib > directory insteed of the jetty lib/ext directory. Is the fact that you > should you use WEB-INF/lib somewhere documented?
Actually, jetty's lib/ext is preferred, modifying the .war file is NOT recommended. Solr used to ship with the logging jars in the .war file, similar to the result that Guido's procedure gives you. http://wiki.apache.org/solr/SolrLogging#What_changed This was changed in version 4.3.0 because many people were having to take manual steps to change logging frameworks. There is a strong preference among people who really care about logging for using log4j or logback instead of java.util.logging. Now nobody needs to compile Solr themselves or perform surgery on the .war file when they want to change their logging, and the default produces much better results. Thanks, Shawn