/* The following static field will be used by multiple fragments */ public static String spaces = ""; /* Print out method entry */ System.out.println(spaces + "Entered: " + myClassName + "." + myMethodName); spaces = spaces + " "; /* Print out method exit */ spaces = spaces.substring(4); System.out.println(spaces + "Exited: " + myClassName + "." + myMethodName); System.out.println(spaces + "Exception: " + myClassName + "." + myMethodName + " ! " + myExceptionObject.getMessage());