Add Wox.CrashReporter

This commit is contained in:
qianlifeng
2015-01-11 21:52:30 +08:00
parent f20b4d570e
commit 5be6511529
33 changed files with 770 additions and 342 deletions

View File

@@ -13,6 +13,11 @@ namespace Wox.Infrastructure.Logger
fileLogger.Error(msg);
}
public static void Error(Exception e)
{
fileLogger.Error(e.Message + "\r\n" + e.StackTrace);
}
public static void Debug(string msg)
{
fileLogger.Debug(msg);