Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "ETrice/Development/Tips and tricks"

(Add Tracing to Your Plug-in)
(Add Tracing to Your Plug-in)
Line 3: Line 3:
 
== Add Tracing to Your Plug-in ==
 
== Add Tracing to Your Plug-in ==
  
Add a file {{{.option}}} on the top level of your plug-in project. To this file add a line
+
Add a file <code>.option</code> on the top level of your plug-in project. To this file add a line
 
<pre>
 
<pre>
 
de.protos.example/trace/data=true
 
de.protos.example/trace/data=true

Revision as of 03:44, 16 July 2012

General Eclipse HOWTOs

Add Tracing to Your Plug-in

Add a file .option on the top level of your plug-in project. To this file add a line

de.protos.example/trace/data=true

This setting can be toggled in the trace tab of your launch configuration (it's also possible to edit string values there).

Here is the source code that uses these settings to enable trace messages printed to system log or standard out:

	private static boolean traceData = false;
 
	static {
		if (Activator.getDefault().isDebugging()) {
			String value = Platform.getDebugOption(
					"de.protos.example/trace/data");
			if (value!=null && value.equalsIgnoreCase(Boolean.toString(true)))
				traceData = true;
		}
	}

Back to the top