views:

29

answers:

1

I have the following in my log4j file

#set httpclient debug levels
log4j.logger.org.apache.component=ERROR,stdout 
log4j.logger.httpclient.wire=ERROR,stdout 
log4j.logger.org.apache.commons.httpclient=ERROR,stdout 

but I'm still getting warnings when I run my httpclient code... am I missing something? thanks!

WARN [pool-1-thread-69] (ResponseProcessCookies.java:126) - Cookie rejected: "[version: 0][name: webtb_state][value: method%3Dsu
+2  A: 

ResponseProcessCookies is in the org.apache.http.client.protocol package, which you don't seem to have covered. Perhaps go for org.apache.http.client?

(You may also need to set additivity to false; it's been a while since I've configured log4j.)

Jon Skeet
worked! thanks :)