mirror of
https://github.com/microsoft/PowerToys
synced 2024-11-22 17:09:28 +00:00
16 lines
317 B
C#
16 lines
317 B
C#
using System.Reflection;
|
|
using log4net;
|
|
|
|
namespace WinAlfred.Helper
|
|
{
|
|
public class Log
|
|
{
|
|
private static ILog fileLogger = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType);
|
|
|
|
public static void Error(string msg)
|
|
{
|
|
fileLogger.Error(msg);
|
|
}
|
|
}
|
|
}
|