Top 20 NuGet Logging Packages

Simple log4net appender which logs to the raygun.io API from your MVC application.
KISS .NET logging library
Simple and easy to use the log class library package
Simple and easy to use the log class library package
Log4Net Logging implementation for Owin
.NET logging framework for Selenium Webdriver users. It can output to text and/or console and/or seleniumlog.viewer (can hold screenshots) formats. It has compatible interface to Log4Net (ie., log.Info(), log.Debug(), log.Error(), log.Fatal(), log.Warning()).
Common.Logging library bindings for Application Insights logging framework.
Simple log4net appender which logs to the raygun.io API.
Enable tracing to log entries in the OWIN pipeline. OWIN Keys/Types can be included/ignored. Filters can be supplied so tracing occurs when all filter conditions are matched. Log format, type format, log action can be globally set whilst type format and log actions can be set individually for each t...
Grace.Common.Logging provides integration class between Common.Logging and Grace (Dependency Injection Container)
Common.Logging library bindings for Elmah logging framework.
Its a bridge between NLog and log4net. It hands all log4net logging events over to NLog. So you could use any lib which uses log4net without even using log4net yourself. Simply call the following line and you are done: NLogAppender.Initialize();
Error Logging Filter and Route (ELFAR) for ASP.NET MVC was inspired by and based on the popular Error Logging Modules And Handlers (ELMAH) for ASP.NET utility. ELFAR retains the familiar ELMAH user interface but has been built to utilise the architecture of ASP.NET MVC.
Implementation of Utility.Logging for NLog
Combres is a .NET library which minifies, compresses, combines, and caches JavaScript and CSS resources of ASP.NET and ASP.NET MVC web applications. This package contains the Log4Net adapter for Combres.
Adds support for adding logging to the hosted application by convention.
Zero File logger provider implementation for Microsoft.Extensions.Logging.
This package contains implementations of the ILogger and ILoggerProvider to allow log4net to be used with the Microsoft.Extensions.Logging infrastructure.
Zametek utility logging classes for AspNet Core.
Serilog.Sinks.ListOfString logs to a list of string so you can test your logging : ``` var log= new List<String>(); var testLogger= new LoggerConfiguration().WriteTo.StringList(log).CreateLogger(); ...tests... log.ShouldContain( x=>x.Matches("kilroy was here") ); ``` This is for Serilog. For Mic...