mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-08 12:18:50 +02:00
regular commit
This commit is contained in:
19
WinAlfred/Helper/Log.cs
Normal file
19
WinAlfred/Helper/Log.cs
Normal file
@@ -0,0 +1,19 @@
|
||||
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; }
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user