1 21 22 package org.apache.derby.ui.util; 23 24 import org.apache.derby.ui.DerbyPlugin; 25 import org.eclipse.core.runtime.ILog; 26 import org.eclipse.core.runtime.Status; 27 28 29 public class Logger { 30 static public void log(String msg, int msgType) { 31 ILog log = DerbyPlugin.getDefault().getLog(); 32 Status status = new Status(msgType, DerbyPlugin.getDefault().getBundle().getSymbolicName(), msgType, msg + "\n", null); 33 log.log(status); 34 35 } 36 } 37 | Popular Tags |