1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-06-05 00:36:16 +02:00

added debugLog

This commit is contained in:
David Inglis 2002-08-13 14:20:37 +00:00
parent e69d93f028
commit 97c9e131f6

View file

@ -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);
}
}
}