Eclipse RCP – Simple Logging mechanism
This is a short snippet to solve you logging needs in Eclipse RCP application by using build in logging functionality. I have created 3 simple static utility methods but you can create your LogUtil utility class as you wish based on this example: import org.eclipse.core.runtime.IStatus; import org.eclipse.core.runtime.Status; public class LogUtil { public static […]
Read More →