mirror of
https://git.teknik.io/Teknikode/Teknik.git
synced 2023-08-02 14:16:22 +02:00
18 lines
435 B
C#
18 lines
435 B
C#
using Microsoft.Extensions.Logging;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
using Teknik.Configuration;
|
|
|
|
namespace Teknik.Logging
|
|
{
|
|
public static class LoggerExtensions
|
|
{
|
|
public static ILoggerFactory AddLogger(this ILoggerFactory loggerFactory, Config config)
|
|
{
|
|
loggerFactory.AddProvider(new LoggerProvider(config));
|
|
return loggerFactory;
|
|
}
|
|
}
|
|
}
|