1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-24 09:25:31 +02:00

comment debug outputs.

This commit is contained in:
Alain Magloire 2002-09-10 19:01:29 +00:00
parent c8c9ec8a30
commit 841c4d9b89
2 changed files with 2 additions and 2 deletions

View file

@ -182,7 +182,7 @@ public class MISession extends Observable {
static int number = 1;
public synchronized void postCommand(Command cmd, long timeout) throws MIException {
MIPlugin.getDefault().debugLog(number++ + " " + cmd.toString());
//MIPlugin.getDefault().debugLog(number++ + " " + cmd.toString());
// Test if we are in a sane state.
if (!txThread.isAlive() || !rxThread.isAlive()) {

View file

@ -68,7 +68,7 @@ public class RxThread extends Thread {
try {
String line;
while ((line = reader.readLine()) != null) {
MIPlugin.getDefault().debugLog(line);
//MIPlugin.getDefault().debugLog(line);
processMIOutput(line + "\n");
}
} catch (IOException e) {