Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 921554482083685f43477a921ba66244003b6c23 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
/*******************************************************************************
 * Copyright (c) 2011, 2012 Wind River Systems, Inc. and others. All rights reserved.
 * This program and the accompanying materials are made available under the terms
 * of the Eclipse Public License v1.0 which accompanies this distribution, and is
 * available at http://www.eclipse.org/legal/epl-v10.html
 *
 * Contributors:
 * Wind River Systems - initial API and implementation
 *******************************************************************************/
package org.eclipse.tcf.te.tcf.core.interfaces.tracing;

/**
 * TCF core plug-in trace slot identifiers.
 */
public interface ITraceIds {

	/**
	 * If activated, tracing information about channel open/close is printed out.
	 */
	public static String TRACE_CHANNELS = "trace/channels"; //$NON-NLS-1$

	/**
	 * If activated, tracing information about the channel manager is printed out.
	 */
	public static String TRACE_CHANNEL_MANAGER = "trace/channelManager"; //$NON-NLS-1$
}

Back to the top