PowerToys/Wox.Infrastructure/Logger/Log.cs

42 lines
872 B
C#
Raw Normal View History

2014-12-29 23:02:50 +08:00
using System;
using System.Reflection;
2013-12-20 19:38:10 +08:00
using log4net;
2014-09-19 16:57:48 +08:00
namespace Wox.Infrastructure.Logger
2013-12-20 19:38:10 +08:00
{
public class Log
{
private static ILog fileLogger = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType);
public static void Error(string msg)
2013-12-20 19:38:10 +08:00
{
fileLogger.Error(msg);
2013-12-20 19:38:10 +08:00
}
2014-03-23 17:43:46 +08:00
2015-01-11 21:52:30 +08:00
public static void Error(Exception e)
{
fileLogger.Error(e.Message + "\r\n" + e.StackTrace);
}
2014-03-23 17:43:46 +08:00
public static void Debug(string msg)
{
fileLogger.Debug(msg);
}
public static void Info(string msg)
{
fileLogger.Info(msg);
}
public static void Warn(string msg)
{
fileLogger.Warn(msg);
}
public static void Fatal(string msg)
{
fileLogger.Fatal(msg);
}
2013-12-20 19:38:10 +08:00
}
}