blob: 20342063ac384a469c726ee97cea7b98010cce4e [file] [log] [blame]
package org.eclipse.scout.sdk.util.internal;
import org.eclipse.core.runtime.Plugin;
import org.eclipse.scout.sdk.util.log.SdkLogManager;
import org.osgi.framework.BundleContext;
public class SdkUtilActivator extends Plugin {
public final static String PLUGIN_ID = "org.eclipse.scout.sdk.util";
private static SdkUtilActivator plugin;
private static SdkLogManager logManager;
public static SdkUtilActivator getDefault() {
return plugin;
}
@Override
public void start(BundleContext bundleContext) throws Exception {
super.start(bundleContext);
plugin = this;
logManager = new SdkLogManager(this);
}
@Override
public void stop(BundleContext bundleContext) throws Exception {
plugin = null;
logManager = null;
super.stop(bundleContext);
}
public static void logInfo(Throwable t) {
logManager.logInfo(t);
}
public static void logInfo(String message) {
logManager.logInfo(message);
}
public static void logInfo(String message, Throwable t) {
logManager.logInfo(message, t);
}
public static void logWarning(String message) {
logManager.logWarning(message);
}
public static void logWarning(Throwable t) {
logManager.logWarning(t);
}
public static void logWarning(String message, Throwable t) {
logManager.logWarning(message, t);
}
public static void logError(Throwable t) {
logManager.logError(t);
}
public static void logError(String message) {
logManager.logError(message);
}
public static void logError(String message, Throwable t) {
logManager.logError(message, t);
}
}