.NET Logging
Quick links
Experiments on GitHub: devpro/dotnetcore-logging
Tips
For a netstandard library
Add
Microsoft.Extensions.Logging
to the project (do not add a strong dependency to a logging framework such as log4net or NLog!).Add
ILogger
dependency (IoC) to the class constructor and the related private field
Frameworks
Serilog
Homepage: serilog.net
Usecases
Logging in Redis
Possible with Serilog
NLog.Redis not yet available for .NET Core (as of the 10th of May 2018).
Last updated