[REFACTOR] Refactored logging & added support for Microsoft.Extensions.Logging. Added test WebApi project

This commit is contained in:
max
2024-11-17 22:51:54 +01:00
parent 58739c2aea
commit 737cbcfd11
31 changed files with 398 additions and 97 deletions

View File

@@ -0,0 +1,23 @@
using Microsoft.Extensions.Logging;
namespace DotBased.Logging.MEL;
public class BasedLoggerProvider : ILoggerProvider
{
public BasedLoggerProvider(LogOptions options)
{
Options = options;
}
private readonly LogOptions Options;
public Microsoft.Extensions.Logging.ILogger CreateLogger(string categoryName)
{
return new BasedLogger(Options.LoggerBuilder.Invoke(new LoggerInformation(typeof(BasedLoggerProvider)), categoryName));
}
public void Dispose()
{
}
}