in org.apache.easyant4e/src/org/apache/easyant4e/console/EasyAntConsoleImpl.java [72:82]
private void showErrorLogView(){
if (PlatformUI.getWorkbench().getActiveWorkbenchWindow() != null) {
if (PlatformUI.getWorkbench().getActiveWorkbenchWindow().getActivePage() != null) {
try {
PlatformUI.getWorkbench().getActiveWorkbenchWindow().getActivePage().showView("org.eclipse.pde.runtime.LogView", null, IWorkbenchPage.VIEW_ACTIVATE);
} catch (PartInitException e) {
Activator.getEasyAntPlugin().log(IStatus.ERROR, "Cannot show the Error Log view.", e);
}
}
}
}