16 lines
493 B
C#
16 lines
493 B
C#
using Microsoft.Extensions.Logging;
|
|
|
|
|
|
namespace AyaNova.Util
|
|
{
|
|
/// <summary>
|
|
/// Shared logger
|
|
/// </summary>
|
|
internal static class ApplicationLogging
|
|
{
|
|
internal static ILoggerFactory LoggerFactory { get; set; }// = new LoggerFactory();
|
|
internal static ILogger CreateLogger<T>() => LoggerFactory.CreateLogger<T>();
|
|
internal static ILogger CreateLogger(string categoryName) => LoggerFactory.CreateLogger(categoryName);
|
|
|
|
}
|
|
} |