PowerToys/Wox/Helper/Log.cs

36 lines
711 B
C#
Raw Normal View History

2013-12-22 19:35:21 +08:00
using System.Reflection;
2013-12-20 19:38:10 +08:00
using log4net;
2014-01-29 18:33:24 +08:00
namespace Wox.Helper
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
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
}
}