- Timestamp:
- 09/28/11 03:10:30 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaHelperLib/src/de/ugoe/cs/util/console/Console.java
r201 r210 335 335 * exception whose stack trace is to be printed 336 336 */ 337 public static void printStacktrace(Exception e) {337 public static void logException(Exception e) { 338 338 if (theInstance == null) { 339 339 getInstance(); 340 340 } 341 341 for (IExceptionListener observer : theInstance.exceptionListener) { 342 observer. printStacktrace(e);342 observer.logException(e); 343 343 } 344 344 }
Note: See TracChangeset
for help on using the changeset viewer.