mirror of
https://github.com/MAKS-IT-COM/maksit-certs-ui.git
synced 2025-12-31 04:00:03 +01:00
25 lines
637 B
C#
25 lines
637 B
C#
|
|
using Microsoft.Extensions.Logging;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace MaksIT.Core.Logger;
|
|
|
|
public class MyCustomLogger : ILogger {
|
|
public IDisposable? BeginScope<TState>(TState state) where TState : notnull {
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public bool IsEnabled(LogLevel logLevel) {
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public void Log<TState>(LogLevel logLevel, EventId eventId, TState state, Exception? exception, Func<TState, Exception?, string> formatter) {
|
|
throw new NotImplementedException();
|
|
}
|
|
}
|
|
|