mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-06-05 00:36:16 +02:00
added debugLog
This commit is contained in:
parent
e69d93f028
commit
97c9e131f6
1 changed files with 7 additions and 0 deletions
|
@ -77,4 +77,11 @@ public class MIPlugin extends Plugin {
|
|||
}
|
||||
return new CSession(session);
|
||||
}
|
||||
|
||||
public static void debugLog(String message) {
|
||||
if ( getDefault().isDebugging() ) {
|
||||
// getDefault().getLog().log(StatusUtil.newStatus(Status.ERROR, message, null));
|
||||
System.err.println(message);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue