Changeset 5911


Ignore:
Timestamp:
2003-11-20T10:54:14+13:00 (20 years ago)
Author:
kjdon
Message:

added a print method

File:
1 edited

Legend:

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

    r5895 r5911  
    647647
    648648    /** Print a message to the debug stream. */
     649    static synchronized public void print(String message) {
     650    if(debug != null) {
     651        debug.print(message);
     652        System.err.print(message);
     653    }
     654    }
     655    /** Print a message to the debug stream. */
    649656    static synchronized public void println(String message) {
    650657    if(debug != null) {
Note: See TracChangeset for help on using the changeset viewer.