mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-08-05 15:25:49 +02:00
Code documentation enhancement
This commit is contained in:
parent
86ce7f042e
commit
88bfb422e7
1 changed files with 7 additions and 1 deletions
|
@ -74,6 +74,12 @@ public class DsfPlugin extends Plugin {
|
|||
return fgBundleContext;
|
||||
}
|
||||
|
||||
/**
|
||||
* Writes [message] to stdout, but only if the top level 'debug' tracing
|
||||
* option for this plugin has been turned on
|
||||
*
|
||||
* @param message
|
||||
*/
|
||||
public static void debug(String message) {
|
||||
if (DEBUG) {
|
||||
System.out.println(message);
|
||||
|
|
Loading…
Add table
Reference in a new issue