mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-14 11:39:16 +08:00
20 lines
403 B
C#
20 lines
403 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Reflection;
|
|
using System.Text;
|
|
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);
|
|
}
|
|
}
|
|
}
|