blob: c4d230a3a84c763af1cdea7a67bd45464f23f959 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2003, 2005 IBM Corporation 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:
* IBM Corporation - Initial API and implementation
*******************************************************************************/
package org.eclipse.wst.internet.monitor.ui.internal;
/**
* Helper class to route trace output.
*/
public class Trace {
public static byte CONFIG = 0;
public static byte WARNING = 1;
public static byte SEVERE = 2;
public static byte FINEST = 3;
/**
* Trace constructor comment.
*/
private Trace() {
super();
}
/**
* Trace the given text.
*
* @param level the trace level
* @param s a message
*/
public static void trace(byte level, String s) {
trace(level, s, null);
}
/**
* Trace the given message and exception.
*
* @param level the trace level
* @param s a message
* @param t a throwable
*/
public static void trace(byte level, String s, Throwable t) {
if (!MonitorUIPlugin.getInstance().isDebugging())
return;
System.out.println(MonitorUIPlugin.PLUGIN_ID + " " + s);
if (t != null)
t.printStackTrace();
}
}