[mono/monodevelop] [2 commits] 04cb4b7a: [Core] LogInternalError() now sets silent = true

"Cody Russell ([email protected])" <[email protected]>
Newsgroups gmane.comp.gnome.mono.patches
Message-ID <00000141a41edda9-a8858495-cd04-4eec-b5b6-e6d7947288dc-000000@email.amazonses.com>
   Branch: refs/heads/master
     Home: https://github.com/mono/monodevelop
  Compare: https://github.com/mono/monodevelop/compare/9cd4ff6f2568...cd3b3303fa14

   Commit: 04cb4b7abd2ce36f8146100d2ec2584e95ab04e4
   Author: Cody Russell <[email protected]> (bratsche)
     Date: 2013-10-10 20:42:45 GMT
      URL: https://github.com/mono/monodevelop/commit/04cb4b7abd2ce36f8146100d2ec2584e95ab04e4

[Core] LogInternalError() now sets silent = true

Changed paths:
  M main/src/core/MonoDevelop.Core/MonoDevelop.Core/LoggingService.cs

Modified: main/src/core/MonoDevelop.Core/MonoDevelop.Core/LoggingService.cs
===================================================================
@@ -544,14 +544,14 @@ public static void LogInternalError (Exception ex)
 				Log (LogLevel.Error, System.Environment.NewLine + ex.ToString ());
 			}
 
-			ReportUnhandledException (ex, false, false, "internal");
+			ReportUnhandledException (ex, false, true, "internal");
 		}
 
 		public static void LogInternalError (string message, Exception ex)
 		{
 			Log (LogLevel.Error, message + (ex != null? System.Environment.NewLine + ex.ToString () : string.Empty));
 
-			ReportUnhandledException (ex, false, false, "internal");
+			ReportUnhandledException (ex, false, true, "internal");
 		}
 
 		public static void LogCriticalError (string message, Exception ex)

   Commit: cd3b3303fa14437b9625d8edb2df0fb5aeae6c42
   Author: Cody Russell <[email protected]> (bratsche)
     Date: 2013-10-10 20:43:39 GMT
      URL: https://github.com/mono/monodevelop/commit/cd3b3303fa14437b9625d8edb2df0fb5aeae6c42

[Core] LogCriticalError() now sets willShutdown = false

Changed paths:
  M main/src/core/MonoDevelop.Core/MonoDevelop.Core/LoggingService.cs

Modified: main/src/core/MonoDevelop.Core/MonoDevelop.Core/LoggingService.cs
===================================================================
@@ -558,7 +558,7 @@ public static void LogCriticalError (string message, Exception ex)
 		{
 			Log (LogLevel.Error, message + (ex != null? System.Environment.NewLine + ex.ToString () : string.Empty));
 
-			ReportUnhandledException (ex, true, false, "critical");
+			ReportUnhandledException (ex, false, false, "critical");
 		}
 
 		public static void LogFatalError (string message, Exception ex)


_______________________________________________
Mono-patches maillist  -  [email protected]
http://lists.ximian.com/mailman/listinfo/mono-patches
lmpx.com only provides a reader for public news (NNTP) servers. It is not affiliated with the servers or forums shown here and is not responsible for the content of articles, which is written by their respective authors.