In almost any .NET project I need to have a substitute for ILoggerFactory and its probably most used method CreateLogger<T>(). It returns ILogger<T>, which is in turn:
public interface ILogger<out TCategoryName> : Microsoft.Extensions.Logging.ILogger
Any idea how could this be substituted?