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/util/ExternalProgram.java

    r6785 r8236  
    11package org.greenstone.gatherer.util;
    22
    3 import org.greenstone.gatherer.Gatherer;
    43
    54import java.io.BufferedReader;
     
    87import java.io.IOException;
    98import java.io.OutputStreamWriter;
     9import org.greenstone.gatherer.DebugStream;
    1010
    1111
     
    7878    }
    7979    catch (IOException ex) {
    80         Gatherer.println("Error: Exception occurred while reading program output.");
    81         Gatherer.println("Exception: " + ex);
     80        DebugStream.println("Error: Exception occurred while reading program output.");
     81        DebugStream.println("Exception: " + ex);
    8282        return null;
    8383    }
     
    100100    }
    101101    catch (IOException ex) {
    102         Gatherer.println("Error: Exception occurred while reading program error.");
    103         Gatherer.println("Exception: " + ex);
     102        DebugStream.println("Error: Exception occurred while reading program error.");
     103        DebugStream.println("Exception: " + ex);
    104104        return null;
    105105    }
Note: See TracChangeset for help on using the changeset viewer.