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:
authorCody Russell <bratsche@gnome.org>2013-10-10 08:19:05 +0400
committerCody Russell <bratsche@gnome.org>2013-10-10 08:19:05 +0400
commitf2fb303446cf2958ddd67f8ae133d52debf83f9c (patch)
treeb60569739e4c3992be766d5e287e15f2ce240201 /main/src/addins/VersionControl/MonoDevelop.VersionControl
parentfd46981b2c3ad8881bde778c3a34528a9012d2c2 (diff)
parent83c032bdeb2beae7a30811087448144b95b25a25 (diff)
Merge pull request #413 from bratsche/lumberjack
Reworking the logging services, using Raygun.io
Diffstat (limited to 'main/src/addins/VersionControl/MonoDevelop.VersionControl')
-rw-r--r--main/src/addins/VersionControl/MonoDevelop.VersionControl/MonoDevelop.VersionControl.Views/SubviewAttachmentHandler.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/main/src/addins/VersionControl/MonoDevelop.VersionControl/MonoDevelop.VersionControl.Views/SubviewAttachmentHandler.cs b/main/src/addins/VersionControl/MonoDevelop.VersionControl/MonoDevelop.VersionControl.Views/SubviewAttachmentHandler.cs
index 917c7e8a34..2f02a5b520 100644
--- a/main/src/addins/VersionControl/MonoDevelop.VersionControl/MonoDevelop.VersionControl.Views/SubviewAttachmentHandler.cs
+++ b/main/src/addins/VersionControl/MonoDevelop.VersionControl/MonoDevelop.VersionControl.Views/SubviewAttachmentHandler.cs
@@ -29,7 +29,7 @@ using MonoDevelop.Components.Commands;
using Mono.Addins;
using MonoDevelop.VersionControl;
using MonoDevelop.Ide.Gui;
-using MonoDevelop.Core.LogReporting;
+using MonoDevelop.Core;
using MonoDevelop.Projects;
namespace MonoDevelop.VersionControl.Views
@@ -79,7 +79,7 @@ namespace MonoDevelop.VersionControl.Views
// If a user is hitting this, it will show a dialog box every time they
// switch to a document or open a document, so suppress the crash dialog
// This bug *should* be fixed already, but it's hard to tell.
- LogReportingService.ReportUnhandledException (ex, false, true);
+ LoggingService.ReportUnhandledException (ex, false, true);
}
}