Changeset 8233


Ignore:
Timestamp:
2004-10-07T17:15:04+13:00 (20 years ago)
Author:
mdewsnip
Message:

All exceptions now go to the console, whether debugging is on or not.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/gli/src/org/greenstone/gatherer/Gatherer.java

    r8232 r8233  
    647647    /** Print a stack trace to the debug stream. */
    648648    static synchronized public void printStackTrace(Exception exception) {
    649     if(debug != null) {
     649    if (debug != null) {
    650650        exception.printStackTrace(debug);
    651         exception.printStackTrace();
    652     }
    653     }
     651    }
     652    exception.printStackTrace();
     653    }
     654
    654655    /** Prints a usage message to screen.
    655656     */
Note: See TracChangeset for help on using the changeset viewer.