966bba02bb
Former-commit-id: bb0468d0f257ff100aa895eb5fe583fb5dfbf900
21 lines
445 B
C#
21 lines
445 B
C#
namespace System.Diagnostics.Private
|
|
{
|
|
static partial class Debug
|
|
{
|
|
internal static IDebugLogger s_logger = new MonoDebugLogger();
|
|
|
|
internal sealed class MonoDebugLogger : IDebugLogger
|
|
{
|
|
public void ShowAssertDialog(string stackTrace, string message, string detailMessage)
|
|
{
|
|
// FIXME should we g_error in this case?
|
|
}
|
|
|
|
public void WriteCore(string message)
|
|
{
|
|
// FIXME should we g_debug in this case?
|
|
}
|
|
}
|
|
}
|
|
}
|