I'm a bit confused about the use of the ILoggerFactory interface in .NET Core.
In my integration test I need to new up a MemcachedClientConfiguration object, which insists on a ILoggerFactory parameter.
In the articles and examples I've seen, it looks like ILoggerFactory is automatically injected as a dependency in .NET core. But how would I know what implementation of ILoggerFactory to new up in my integration test?
Clearly there's something missing in my understanding, as whenever I've injected interfaces before I've always had to declare and register them in my IOC class (coming from .NET framework). If I wanted to use a third party logging library like log4net, how would I feed this in to MemcachedClientConfiguration?