mirror of
https://github.com/LBPUnion/ProjectLighthouse.git
synced 2025-05-16 22:52:27 +00:00
16 lines
No EOL
393 B
C#
16 lines
No EOL
393 B
C#
using System;
|
|
using Microsoft.Extensions.Logging;
|
|
|
|
namespace LBPUnion.ProjectLighthouse.Logging
|
|
{
|
|
[ProviderAlias("Kettu")]
|
|
public class AspNetToKettuLoggerProvider : ILoggerProvider, IDisposable
|
|
{
|
|
public void Dispose()
|
|
{
|
|
GC.SuppressFinalize(this);
|
|
}
|
|
|
|
public ILogger CreateLogger(string categoryName) => new AspNetToKettuLogger();
|
|
}
|
|
} |