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/msm/MetadataSetManager.java

    r8231 r8236  
    4343import javax.swing.tree.TreePath;
    4444import org.greenstone.gatherer.Configuration;
     45import org.greenstone.gatherer.DebugStream;
    4546import org.greenstone.gatherer.Dictionary;
    4647import org.greenstone.gatherer.Gatherer;
     
    927928    File file = new File(Gatherer.self.getCollectionMetadata());
    928929    if (!file.exists()) {
    929         Gatherer.println("trying to save a collection and the metadata directory does not exist - creating it!");
     930        DebugStream.println("trying to save a collection and the metadata directory does not exist - creating it!");
    930931        file.mkdir();
    931932    }
     
    937938        backup.deleteOnExit();
    938939        if(!temp[i].renameTo(backup)) {
    939             Gatherer.println("Error in MetadataSetManager.save(): FileRenamedException");
     940            DebugStream.println("Error in MetadataSetManager.save(): FileRenamedException");
    940941        }
    941942        }
Note: See TracChangeset for help on using the changeset viewer.