On Wed, 2004-03-03 at 20:11, toni price wrote:
Your diagnosis is pretty much right:
<quote>
but it seems like the wire logger is using a separate logging repository
</quote>
[well, it's just using a category which doesn't happen to follow the
conventional category=classname naming convention].
>From the Wire class:
class Wire {
/** Log for any wire messages. */
private static final Log WIRE_LOG =
LogFactory.getLog("httpclient.wire");
This class is explicitly logging to category "httpclient.wire", not
"org.apache.commons.httpclient.Wire". I don't know why it was done this
way, but it sure looks deliberate so I would advise double-checking the
httpclient docs to see if they explain why. Or ask [httpclient] rather
than [logging].
In the meantime, just use this to configure it:
<logger name="httpclient.wire">
<level value="WARN>
</logger>
Regards,
Simon
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]