package com.db2.sb.scriptlauncher;
import org.eclipse.core.runtime.ILog;
import org.eclipse.core.runtime.Status;
import scriptlaucherdb2.Activator;
public class DB2LogUtil {
private static ILog getLog() {
ILog log = Activator.getDefault().getLog();
return log;
}
private static void log(String msg, int id, Exception e) {
getLog().log(new Status(Status.INFO, Activator.PLUGIN_ID, id, msg, null));
}
static void log(String msg) {
log(msg, Status.OK, null);
}
static void log(String msg, Exception e) {
log(msg, Status.ERROR, e);
}
static void logError(String msg) {
log(msg, Status.ERROR, null);
}
static void launchererrorLog(Exception e) {
log(Messages.DB2LauncherError, e);
}
}
Blog do projektu Open Source JavaHotel
poniedziałek, 28 listopada 2011
Logging and Eclipse plugin
I added logging to my first Eclipse plugin. It seems to have been much simpler than I previously thought. Just simple class like that is enough:
Subskrybuj:
Komentarze do posta (Atom)
Brak komentarzy:
Prześlij komentarz