Debugging basics and some link - Java
Monday Aug 24, 2009
Some simple debugging tools related to Java. These are for those who are new to Java.
1.
Application is crashing : Most miserable one. Get your log file, try to
analysis log. How to write log file, use Java Logger API. Java Logger
had been introduced in JDK 1.4.2. The most awesome feature of Logger
API is that you can use it in production without much overhead. The
overhead is controlled by something called level in API. Level goes
from FINEST to SEVERE. You can refer to O'Relly Book "Java, In a NutShell". I guess. ...........














