| 123456789101112131415161718192021 |
- using Microsoft.Extensions.Logging;
- namespace Quadarax.Application.QLiberace.Base.Tests.Services.Fakes
- {
- public class LoggerFake : ILogger
- {
- public void Log<TState>(LogLevel logLevel, EventId eventId, TState state, Exception? exception, Func<TState, Exception?, string> formatter)
- {
- }
- public bool IsEnabled(LogLevel logLevel)
- {
- return false;
- }
- public IDisposable BeginScope<TState>(TState state)
- {
- return null!;
- }
- }
- }
|