1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-09-10 12:03:16 +02:00

Do not send the log stream to the output console.

This commit is contained in:
Alain Magloire 2002-09-06 03:40:57 +00:00
parent 16b474f214
commit ccb0662448

View file

@ -255,6 +255,8 @@ MIPlugin.getDefault().debugLog(line);
}
}
} else if (stream instanceof MILogStreamOutput) {
/*
// This is meant for the gdb console.
OutputStream log = session.getMIInferior().getPipedErrorStream();
if (log != null) {
MILogStreamOutput out = (MILogStreamOutput)stream;
@ -267,6 +269,7 @@ MIPlugin.getDefault().debugLog(line);
}
}
}
*/
}
}