Better logo handling for uwp #198

This commit is contained in:
bao-qian
2016-09-05 20:33:31 +01:00
parent 17671493bf
commit 5ca880c8fd
2 changed files with 123 additions and 51 deletions

View File

@@ -47,8 +47,6 @@ namespace Wox.Infrastructure.Logger
public static void Exception(System.Exception e)
{
#if DEBUG
#else
var type = CallerType();
var logger = LogManager.GetLogger(type);
@@ -58,7 +56,6 @@ namespace Wox.Infrastructure.Logger
logger.Error($"\n{e.StackTrace}");
e = e.InnerException;
} while (e != null);
#endif
}
public static void Debug(string msg)