PowerToys/Wox.Infrastructure/DebugHelper.cs

14 lines
234 B
C#
Raw Normal View History

2015-10-31 07:17:34 +08:00
using System.Diagnostics;
2015-02-04 23:16:41 +08:00
namespace Wox.Infrastructure
{
public static class DebugHelper
{
public static void WriteLine(string msg)
{
2015-02-05 22:20:42 +08:00
return;
2015-02-04 23:16:41 +08:00
Debug.WriteLine(msg);
}
}
}