20 lines
366 B
C#
20 lines
366 B
C#
using NLog;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace LPA
|
|
{
|
|
public static class Log
|
|
{
|
|
public static Logger Instance { get; private set; }
|
|
static Log()
|
|
{
|
|
LogManager.ReconfigExistingLoggers();
|
|
Instance = LogManager.GetCurrentClassLogger();
|
|
}
|
|
}
|
|
}
|