X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=blobdiff_plain;f=mcs%2Fclass%2Fcorlib%2Fcorert%2FDebug.cs;h=3eaf922d1345de6a66c9acf4482ae86c20396cdf;hb=b41347b9f479d2e7a507ecf72d5cc97bdc6d3daa;hp=7a7b21675c78b75258d96c474126e676d3c89a41;hpb=875ab8db4c27ed802ad44fdd9003311fbb2847cc;p=mono.git diff --git a/mcs/class/corlib/corert/Debug.cs b/mcs/class/corlib/corert/Debug.cs index 7a7b21675c7..3eaf922d134 100644 --- a/mcs/class/corlib/corert/Debug.cs +++ b/mcs/class/corlib/corert/Debug.cs @@ -1,17 +1,21 @@ + namespace System.Diagnostics.Private { - static class Debug + static partial class Debug { - public static void Assert (bool condition) - { - } + internal static IDebugLogger s_logger = new MonoDebugLogger(); - public static void Assert (bool condition, string message) + internal sealed class MonoDebugLogger : IDebugLogger { - } + public void ShowAssertDialog(string stackTrace, string message, string detailMessage) + { + // FIXME should we g_error in this case? + } - public static void Fail (string message) - { + public void WriteCore(string message) + { + // FIXME should we g_debug in this case? + } } } }