mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-14 03:37:10 +08:00
36 lines
711 B
C#
36 lines
711 B
C#
using System.Reflection;
|
|
using log4net;
|
|
|
|
namespace Wox.Helper
|
|
{
|
|
public class Log
|
|
{
|
|
private static ILog fileLogger = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType);
|
|
|
|
public static void Error(string msg)
|
|
{
|
|
fileLogger.Error(msg);
|
|
}
|
|
|
|
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);
|
|
}
|
|
}
|
|
}
|