mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-08-17 13:15:44 +02:00
Commit out the logging from gdb/mi
This commit is contained in:
parent
be32b96116
commit
af2c2b4625
2 changed files with 2 additions and 2 deletions
|
@ -234,7 +234,7 @@ public class MISession extends Observable {
|
||||||
static int number = 1;
|
static int number = 1;
|
||||||
public synchronized void postCommand(Command cmd, long timeout) throws MIException {
|
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.
|
// Test if we are in a sane state.
|
||||||
if (!txThread.isAlive() || !rxThread.isAlive()) {
|
if (!txThread.isAlive() || !rxThread.isAlive()) {
|
||||||
|
|
|
@ -68,7 +68,7 @@ public class RxThread extends Thread {
|
||||||
try {
|
try {
|
||||||
String line;
|
String line;
|
||||||
while ((line = reader.readLine()) != null) {
|
while ((line = reader.readLine()) != null) {
|
||||||
MIPlugin.getDefault().debugLog(line);
|
//MIPlugin.getDefault().debugLog(line);
|
||||||
processMIOutput(line + "\n");
|
processMIOutput(line + "\n");
|
||||||
}
|
}
|
||||||
} catch (IOException e) {
|
} catch (IOException e) {
|
||||||
|
|
Loading…
Add table
Reference in a new issue