mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-12 18:29:24 +08:00
16 lines
311 B
C#
16 lines
311 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);
|
|
}
|
|
}
|
|
}
|