mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-14 03:37:10 +08:00
20 lines
400 B
C#
20 lines
400 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 ILog FileLogger
|
|||
|
{
|
|||
|
get { return fileLogger; }
|
|||
|
}
|
|||
|
}
|
|||
|
}
|