Ignore:
Timestamp:
2004-10-08T09:46:12+13:00 (20 years ago)
Author:
mdewsnip
Message:

Replaced all Gatherer.print* with DebugStream.print*.

File:
1 edited

Legend:

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

    r8231 r8236  
    4242import javax.swing.JProgressBar;
    4343import org.greenstone.gatherer.Configuration;
     44import org.greenstone.gatherer.DebugStream;
    4445import org.greenstone.gatherer.Dictionary;
    4546import org.greenstone.gatherer.Gatherer;
     
    409410    shared_progress_bar.setValue(value);
    410411    if(value != 0 && value < previous_value) {
    411         Gatherer.println("Progress is decreasing! " + previous_value + " -> " + value);
     412        DebugStream.println("Progress is decreasing! " + previous_value + " -> " + value);
    412413    }
    413414    previous_value = value;
Note: See TracChangeset for help on using the changeset viewer.