1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-08-12 02:35:37 +02:00

Print gdb responses.

This commit is contained in:
Alain Magloire 2002-10-21 02:55:39 +00:00
parent 5fff1d8d25
commit f9b771cd11

View file

@ -68,8 +68,8 @@ public class RxThread extends Thread {
try {
String line;
while ((line = reader.readLine()) != null) {
//String text = (line.length() > 500) ? line.substring(0, 500) : line;
//MIPlugin.getDefault().debugLog(text);
// TRACING: print the output.
MIPlugin.getDefault().debugLog(line);
processMIOutput(line + "\n");
}
} catch (IOException e) {