1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-06 08:35:26 +02:00

[220547] taking out tracing so that N-build doesn't fail due to Activator import

This commit is contained in:
David McKnight 2008-03-03 14:43:39 +00:00
parent e421309540
commit 037229e78d

View file

@ -20,7 +20,6 @@ import java.io.StringWriter;
import org.eclipse.core.runtime.IStatus;
import org.eclipse.rse.internal.services.Activator;
public class SimpleSystemMessage extends SystemMessage {
@ -109,8 +108,6 @@ public class SimpleSystemMessage extends SystemMessage {
super("RSE", "G", "-", severityToIndicator(severity), msg, msgDetails); //$NON-NLS-1$ //$NON-NLS-2$//$NON-NLS-3$
_pluginId = pluginId;
// no message id - log this info
Activator.trace("SimpleSystemMessage with no message id in "+pluginId); //$NON-NLS-1$
}
/**
@ -129,9 +126,6 @@ public class SimpleSystemMessage extends SystemMessage {
public SimpleSystemMessage(String pluginId, int severity, String msg, Throwable e) {
super("RSE", "G", "-", severityToIndicator(severity), msg, throwableToDetails(e)); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$
_pluginId = pluginId;
// no message id - log this info
Activator.trace("SimpleSystemMessage with no message id in "+pluginId); //$NON-NLS-1$
}
private static String throwableToDetails(Throwable e){