1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-06-07 17:56:01 +02:00

Uncomment the log stream code.

This commit is contained in:
Alain Magloire 2002-10-21 21:38:44 +00:00
parent 9a1e378aaa
commit fc62968007

View file

@ -267,9 +267,8 @@ public class RxThread extends Thread {
} }
} }
} else if (stream instanceof MILogStreamOutput) { } else if (stream instanceof MILogStreamOutput) {
/*
// This is meant for the gdb console. // This is meant for the gdb console.
OutputStream log = session.getMIInferior().getPipedErrorStream(); OutputStream log = session.getLogPipe();
if (log != null) { if (log != null) {
MILogStreamOutput out = (MILogStreamOutput)stream; MILogStreamOutput out = (MILogStreamOutput)stream;
String str = out.getString(); String str = out.getString();
@ -281,7 +280,6 @@ public class RxThread extends Thread {
} }
} }
} }
*/
} }
} }