Hi, I don't know if it is due to the upgrade to Jenkins ver. 1.565.1 <http://jenkins-ci.org/> but I'm noticing in my logs a lot of SEVERE errors I didn't see before :
Jul 31, 2014 3:14:32 PM org.apache.commons.httpclient.MultiThreadedHttpConnectionManager freeConnection SEVERE: Host connection pool not found, hostConfig=HostConfiguration[host= https://identity.exoplatform.org] It seems they are useless ( https://issues.apache.org/jira/browse/HTTPCLIENT-799) and due to the crowd plugin which uses commons http client 3.x If in jenkins Logs Admin UI I set the logger org.apache.commons.httpclient.MultiThreadedHttpConnectionManager to OFF it solves my issue but I loose it when I restart jenkins. I tried to use an init.groovy.d script but it doesn't work (I'm not sure why, I see it is executed but logs are here and I'm not a java logging fan/expert) Logger multiThreadedHttpConnectionManagerLoggerStopped = Logger.getLogger( "org.apache.commons.httpclient.MultiThreadedHttpConnectionManager") multiThreadedHttpConnectionManagerLoggerStopped.setLevel(Level.OFF) LogManager.getLogManager().addLogger(multiThreadedHttpConnectionManagerLoggerStopped) Is there another solution to set the logger level permanently ? Thx. -- ----- Arnaud Héritier http://aheritier.net Mail/GTalk: aheritier AT gmail DOT com Twitter/Skype : aheritier -- You received this message because you are subscribed to the Google Groups "Jenkins Developers" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.
