mirror of
https://github.com/LBPUnion/ProjectLighthouse.git
synced 2025-07-25 06:31:30 +00:00
15 lines
No EOL
406 B
C#
15 lines
No EOL
406 B
C#
using System;
|
|
using Microsoft.Extensions.Logging;
|
|
|
|
namespace LBPUnion.ProjectLighthouse.Logging {
|
|
[ProviderAlias("Kettu")]
|
|
public class AspNetToKettuLoggerProvider : ILoggerProvider, IDisposable {
|
|
public void Dispose() {
|
|
// cry about it
|
|
}
|
|
|
|
public ILogger CreateLogger(string categoryName) {
|
|
return new AspNetToKettuLogger();
|
|
}
|
|
}
|
|
} |