Post JDK1.5 you can create a quick logger(if you are not using apache log4j for some reason)as below:


 public Logger {
    public static void log(String msg) {
        System.out.printf("%s : %s",Thread.currentThread().getStackTrace() [2],msg);
    }
}