I can appreciate that exceptions should be logged, and they ARE still logged if you turn on debug. The immediate problem (and there are lesser ones in the build) is the multithread test case. When that test pounds the server with 400 requests it WILL get some connection refused exceptions (for me, at least, this is usually only a few, but I've had as many as 360). My test ignores these exceptions, but the build output is flooded with them when log.info is used.
Russell Butek [EMAIL PROTECTED] Tom Jordahl <[EMAIL PROTECTED]> on 05/10/2002 10:47:55 AM Please respond to [EMAIL PROTECTED] To: "'[EMAIL PROTECTED]'" <[EMAIL PROTECTED]> cc: Subject: RE: logging question: catch (Exception) throw AxisFault +1 See http://marc.theaimsgroup.com/?l=axis-dev&m=102028751728496&w=2 But Richard feels that all exceptions should be logged. -- Tom Jordahl -----Original Message----- From: Russell Butek [mailto:[EMAIL PROTECTED]] Sent: Friday, May 10, 2002 11:42 AM To: [EMAIL PROTECTED] Subject: logging question: catch (Exception) throw AxisFault Various places in the code are of the form } catch (Exception e) { log.xxx(... e); throw new AxisFault(...); } In some places xxx is debug, others it is info. I contend that it should always be debug. When it's info, then the build's output contains stack dumps that make reading the output a nuisance. (These outputs weren't there in the past.) Russell Butek [EMAIL PROTECTED]