Re-structure LTTng sub-project as per the Linux Tools guidelines
[deliverable/tracecompass.git] / org.eclipse.linuxtools.lttng.core.tests / src / org / eclipse / linuxtools / lttng / core / tests / ActivateDebugging.java
CommitLineData
6c13869b 1package org.eclipse.linuxtools.lttng.core.tests;
03c71d1e 2
6c13869b 3import org.eclipse.linuxtools.lttng.core.TraceDebug;
03c71d1e
ASL
4
5public class ActivateDebugging {
6
7 public static void activate() {
8 TraceDebug.setDEBUG(true);
9 }
10
11 public static void deactivate() {
12 TraceDebug.setDEBUG(false);
13 }
14}
This page took 0.028264 seconds and 5 git commands to generate.