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
1 package org.eclipse.linuxtools.lttng.core.tests;
2
3 import org.eclipse.linuxtools.lttng.core.TraceDebug;
4
5 public 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.030113 seconds and 5 git commands to generate.