Ignore:
Timestamp:
2005-02-22T14:59:06+13:00 (19 years ago)
Author:
mdewsnip
Message:

Made some debug statements go to DebugStream now.

File:
1 edited

Legend:

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

    r9126 r9134  
    137137        if (assigned_plugin.isSeparator() == false && assigned_plugin.doesProcessFile(file) == true) {
    138138        // This file will be processed by an assigned plugin, so no suggestion is necessary
    139         System.err.println("Processed by assigned plugin: " + assigned_plugin);
    140         // System.err.println("Explodes metadata databases: " + assigned_plugin.doesExplodeMetadataDatabases());
     139        DebugStream.println("Processed by assigned plugin: " + assigned_plugin);
    141140        return;
    142141        }
     
    149148        Plugin unassigned_plugin = (Plugin) unassigned_plugins[i];
    150149        if (unassigned_plugin.doesProcessFile(file) == true) {
    151         System.err.println("Processed by unassigned plugin: " + unassigned_plugin);
     150        DebugStream.println("Processed by unassigned plugin: " + unassigned_plugin);
    152151        suitable_plugins.add(unassigned_plugin);
    153152        }
Note: See TracChangeset for help on using the changeset viewer.