mirror of
https://github.com/openeggbert/mobile-eggbert-core.git
synced 2025-03-24 07:09:54 +01:00
23 lines
509 B
C#
23 lines
509 B
C#
using System;
|
|
using System.Diagnostics;
|
|
|
|
namespace WindowsPhoneSpeedyBlupi
|
|
{
|
|
public static class DDebug
|
|
{
|
|
private static bool detailedDebugging = false;
|
|
private static bool DetailedDebugging
|
|
{
|
|
get { return detailedDebugging; }
|
|
set { detailedDebugging = value; }
|
|
}
|
|
public static void WriteLine(String msg)
|
|
{
|
|
if (detailedDebugging)
|
|
{
|
|
Debug.WriteLine(msg);
|
|
}
|
|
}
|
|
}
|
|
}
|