23 lines
509 B
C#
Raw Normal View History

2025-02-01 14:01:53 +01:00
using System;
using System.Diagnostics;
namespace WindowsPhoneSpeedyBlupi
{
public static class DDebug
{
2025-02-01 14:50:48 +01:00
private static bool detailedDebugging = false;
private static bool DetailedDebugging
{
get { return detailedDebugging; }
set { detailedDebugging = value; }
}
2025-02-01 14:01:53 +01:00
public static void WriteLine(String msg)
{
2025-02-01 14:50:48 +01:00
if (detailedDebugging)
2025-02-01 14:01:53 +01:00
{
Debug.WriteLine(msg);
}
}
}
}