From 52cb9b810c893e8f7445e12b349d715118f3d4e6 Mon Sep 17 00:00:00 2001 From: Marc Khouzam Date: Mon, 7 Mar 2011 11:02:38 +0000 Subject: [PATCH] Bug 339048: Remove mention of "PDA launch" when logging errors related to gdb launch shutdown --- .../src/org/eclipse/cdt/dsf/gdb/internal/GdbPlugin.java | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/dsf-gdb/org.eclipse.cdt.dsf.gdb/src/org/eclipse/cdt/dsf/gdb/internal/GdbPlugin.java b/dsf-gdb/org.eclipse.cdt.dsf.gdb/src/org/eclipse/cdt/dsf/gdb/internal/GdbPlugin.java index fb0247a0fb5..0d4236890e2 100644 --- a/dsf-gdb/org.eclipse.cdt.dsf.gdb/src/org/eclipse/cdt/dsf/gdb/internal/GdbPlugin.java +++ b/dsf-gdb/org.eclipse.cdt.dsf.gdb/src/org/eclipse/cdt/dsf/gdb/internal/GdbPlugin.java @@ -7,6 +7,7 @@ * * Contributors: * Wind River Systems - initial API and implementation + * Abeer Bagul (Tensilica) - Updated error message (Bug 339048) *******************************************************************************/ package org.eclipse.cdt.dsf.gdb.internal; @@ -122,9 +123,9 @@ public class GdbPlugin extends Plugin { try { launchShutdownQuery.get(); } catch (InterruptedException e) { - getLog().log(new Status(IStatus.ERROR, PLUGIN_ID, "InterruptedException while shutting down PDA debugger launch " + gdbLaunch, e.getCause())); //$NON-NLS-1$ + getLog().log(new Status(IStatus.ERROR, PLUGIN_ID, "InterruptedException while shutting down launch " + gdbLaunch, e.getCause())); //$NON-NLS-1$ } catch (ExecutionException e) { - getLog().log(new Status(IStatus.ERROR, PLUGIN_ID, "Exception while shutting down PDA debugger launch " + gdbLaunch, e.getCause())); //$NON-NLS-1$ + getLog().log(new Status(IStatus.ERROR, PLUGIN_ID, "Exception while shutting down launch " + gdbLaunch, e.getCause())); //$NON-NLS-1$ } } }