Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/monodevelop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeffrey Stedfast <jeff@xamarin.com>2015-01-29 23:24:33 +0300
committerJeffrey Stedfast <jeff@xamarin.com>2015-01-29 23:24:33 +0300
commitee2adf2e7a1816709d7d855bc8c1f60b25e9c651 (patch)
tree9d58b42a932b199b93d9c985cdaab6da8713becb /main/src/addins/MonoDevelop.Debugger
parent4dab64a6614a739af0cfec78176ba9a3fa33b22d (diff)
[Debugger] Use the ex.Message for the secondary text always if left unspecified
Diffstat (limited to 'main/src/addins/MonoDevelop.Debugger')
-rw-r--r--main/src/addins/MonoDevelop.Debugger/MonoDevelop.Debugger/DebuggingService.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/main/src/addins/MonoDevelop.Debugger/MonoDevelop.Debugger/DebuggingService.cs b/main/src/addins/MonoDevelop.Debugger/MonoDevelop.Debugger/DebuggingService.cs
index 54c14e2b94..6125d10095 100644
--- a/main/src/addins/MonoDevelop.Debugger/MonoDevelop.Debugger/DebuggingService.cs
+++ b/main/src/addins/MonoDevelop.Debugger/MonoDevelop.Debugger/DebuggingService.cs
@@ -639,7 +639,7 @@ namespace MonoDevelop.Debugger
if (ex is DebuggerException)
MessageService.ShowError (ex.Message);
else
- MessageService.ShowError (string.Format ("Debugger operation failed: {0}", ex.Message), ex);
+ MessageService.ShowError ("Debugger operation failed", ex);
});
return true;
}