Ignore:
Timestamp:
09/28/11 03:10:30 (13 years ago)
Author:
sherbold
Message:
  • renamed de.ugoe.cs.util.console.Console#printStacktrace() and de.ugoe.cs.util.console.listener.IExceptionListener#printStackstrace() to #logException
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaHelperLib/src/de/ugoe/cs/util/console/Console.java

    r201 r210  
    335335         *            exception whose stack trace is to be printed 
    336336         */ 
    337         public static void printStacktrace(Exception e) { 
     337        public static void logException(Exception e) { 
    338338                if (theInstance == null) { 
    339339                        getInstance(); 
    340340                } 
    341341                for (IExceptionListener observer : theInstance.exceptionListener) { 
    342                         observer.printStacktrace(e); 
     342                        observer.logException(e); 
    343343                } 
    344344        } 
Note: See TracChangeset for help on using the changeset viewer.