Encountered a frustrating problem in our application today which came down to an ArrayIndexOutOfBounds exception being thrown. The exception's type was just about all that was logged which is fairly useless (but, oh dear legacy app, we still love you, mostly). I've redeployed the application with a change which logs the stack trace on exception handling (and immediately found the root cause of the problem) and wondered why no one else did this before. Do you generally log the stack trace and is there any reason you wouldn't do this?
Bonus points if you can explain (why, not how) the rationale behind having to jump hoops in java to get a string representation of a stack trace!
Log4J? If so, was it usingorg.apache.log4j.RollingFileAppender? I use it in banking applications (and yes, the system is huge) and I had no problems whatsoever. – The Elite Gentleman Mar 25 '10 at 22:24logger.info()orlogger.debug()to pass "useful" information to log. Hence logging necessary/unnecessary data (depends on your POV) can be debatable. I was asking because it seems that there is too much info passing to the logger and it also seems that the developer never utilised the logger to its best efficiency. – The Elite Gentleman Mar 25 '10 at 22:38