24 lines
421 B
C#
24 lines
421 B
C#
using NLog;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace TestApp
|
|
{
|
|
public class Utils
|
|
{
|
|
|
|
/// <summary>
|
|
/// S
|
|
/// </summary>
|
|
public static Logger Log { get; private set; }
|
|
static Utils()
|
|
{
|
|
LogManager.ReconfigExistingLoggers();
|
|
|
|
Log = LogManager.GetCurrentClassLogger();
|
|
}
|
|
}
|
|
}
|