Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 0552775487749bb7221319aba53db058867baf2c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package org.eclipse.linuxtools.lttng.tests;

import org.eclipse.linuxtools.lttng.TraceDebug;

public class ActivateDebugging {

	public static void activate() {
		TraceDebug.setDEBUG(true);
	}
	
	public static void deactivate() {
		TraceDebug.setDEBUG(false);
	}
}

Back to the top