[corert] Import System.Diagnostics.Debug
[mono.git] / mcs / class / corlib / corert / Debug.cs
1
2 namespace System.Diagnostics.Private
3 {
4         static partial class Debug
5         {
6                 internal static IDebugLogger s_logger = new MonoDebugLogger();
7
8                 internal sealed class MonoDebugLogger : IDebugLogger
9                 {
10                         public void ShowAssertDialog(string stackTrace, string message, string detailMessage)
11                         {
12                                 // FIXME should we g_error in this case?
13                         }
14
15                         public void WriteCore(string message)
16                         {
17                                 // FIXME should we g_debug in this case?
18                         }
19                 }
20         }
21 }