Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDarin Wright2002-03-13 18:48:12 +0000
committerDarin Wright2002-03-13 18:48:12 +0000
commit629ea838b1f01e276c94823e2003054224841b73 (patch)
tree18a611552b7f3ae36790a3298745c04335e642e1 /org.eclipse.debug.ui
parentefa4fe967e7da99524bbb332ef91eae8bfe712cd (diff)
downloadeclipse.platform.debug-629ea838b1f01e276c94823e2003054224841b73.tar.gz
eclipse.platform.debug-629ea838b1f01e276c94823e2003054224841b73.tar.xz
eclipse.platform.debug-629ea838b1f01e276c94823e2003054224841b73.zip
bug 11246
Diffstat (limited to 'org.eclipse.debug.ui')
-rw-r--r--org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/launchConfigurations/LaunchConfigurationDialog.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/launchConfigurations/LaunchConfigurationDialog.java b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/launchConfigurations/LaunchConfigurationDialog.java
index 227d39a3e..75272d6c2 100644
--- a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/launchConfigurations/LaunchConfigurationDialog.java
+++ b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/launchConfigurations/LaunchConfigurationDialog.java
@@ -1642,7 +1642,7 @@ public class LaunchConfigurationDialog extends TitleAreaDialog
doSave();
result = doLaunch(getLaunchConfiguration());
} catch (CoreException e) {
- DebugUIPlugin.logError(e);
+ DebugUIPlugin.log(e.getStatus());
DebugUIPlugin.errorDialog(getShell(), "Launch Configuration Error", "Exception occurred while launching configuration. See log for more information.", e.getStatus());
return;
}

Back to the top