mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-04-29 19:45:01 +02:00
debugLog needs not to be static
This commit is contained in:
parent
a9c1020705
commit
c6b9427c9f
1 changed files with 1 additions and 1 deletions
|
@ -195,7 +195,7 @@ public class MIPlugin extends Plugin {
|
|||
return getDefault().getDescriptor().getUniqueIdentifier();
|
||||
}
|
||||
|
||||
public static void debugLog(String message) {
|
||||
public void debugLog(String message) {
|
||||
if (getDefault().isDebugging()) {
|
||||
// This is to verbose for a log file, better use the console.
|
||||
// getDefault().getLog().log(StatusUtil.newStatus(Status.ERROR, message, null));
|
||||
|
|
Loading…
Add table
Reference in a new issue