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>2011-11-29 22:47:30 +0400
committerJeffrey Stedfast <jeff@xamarin.com>2011-11-29 22:48:27 +0400
commit0650113182427275a362a39b11a5b81575e523fd (patch)
tree00a031acb678140591b188e19062f424fc630501
parentfe70c3b6e2dc9b18f0338e313fc20c5adea2c4d3 (diff)
[Debugger] Log the previously removed CWL with the logging service instead.
-rw-r--r--main/src/addins/MonoDevelop.Debugger/MonoDevelop.Debugger/DebuggingService.cs3
1 files changed, 2 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 33fbda4e06..6e425aa251 100644
--- a/main/src/addins/MonoDevelop.Debugger/MonoDevelop.Debugger/DebuggingService.cs
+++ b/main/src/addins/MonoDevelop.Debugger/MonoDevelop.Debugger/DebuggingService.cs
@@ -600,7 +600,8 @@ namespace MonoDevelop.Debugger
default:
break;
}
- } catch {
+ } catch (Exception ex) {
+ LoggingService.LogError ("Error handling debugger target event", ex);
}
}