mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-15 03:59:15 +08:00
53 lines
1.2 KiB
C#
53 lines
1.2 KiB
C#
using System.Diagnostics;
|
|
using NLog;
|
|
using Wox.Infrastructure.Exception;
|
|
|
|
namespace Wox.Infrastructure.Logger
|
|
{
|
|
public class Log
|
|
{
|
|
private static NLog.Logger logger = LogManager.GetCurrentClassLogger();
|
|
|
|
public static void Error(System.Exception e)
|
|
{
|
|
#if DEBUG
|
|
throw e;
|
|
#else
|
|
while (e.InnerException != null)
|
|
{
|
|
logger.Error(e.Message);
|
|
logger.Error(e.StackTrace);
|
|
e = e.InnerException;
|
|
}
|
|
#endif
|
|
}
|
|
|
|
public static void Debug(string msg)
|
|
{
|
|
System.Diagnostics.Debug.WriteLine($"DEBUG: {msg}");
|
|
logger.Debug(msg);
|
|
}
|
|
|
|
public static void Info(string msg)
|
|
{
|
|
System.Diagnostics.Debug.WriteLine($"INFO: {msg}");
|
|
logger.Info(msg);
|
|
}
|
|
|
|
public static void Warn(string msg)
|
|
{
|
|
System.Diagnostics.Debug.WriteLine($"WARN: {msg}");
|
|
logger.Warn(msg);
|
|
}
|
|
|
|
public static void Fatal(System.Exception e)
|
|
{
|
|
#if DEBUG
|
|
throw e;
|
|
#else
|
|
logger.Fatal(ExceptionFormatter.FormatExcpetion(e));
|
|
#endif
|
|
}
|
|
}
|
|
}
|