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);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|