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:
parent
c8c9ec8a30
commit
841c4d9b89
2 changed files with 2 additions and 2 deletions
|
@ -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()) {
|
||||
|
|
|
@ -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) {
|
||||
|
|
Loading…
Add table
Reference in a new issue