KissLog.AspNet.Mvc
5.3.0
Prefix Reserved
See the version list below for details.
dotnet add package KissLog.AspNet.Mvc --version 5.3.0
NuGet\Install-Package KissLog.AspNet.Mvc -Version 5.3.0
<PackageReference Include="KissLog.AspNet.Mvc" Version="5.3.0" />
paket add KissLog.AspNet.Mvc --version 5.3.0
#r "nuget: KissLog.AspNet.Mvc, 5.3.0"
// Install KissLog.AspNet.Mvc as a Cake Addin #addin nuget:?package=KissLog.AspNet.Mvc&version=5.3.0 // Install KissLog.AspNet.Mvc as a Cake Tool #tool nuget:?package=KissLog.AspNet.Mvc&version=5.3.0
KissLog
KissLog is the built-in .NET integration for saving the logs to logBee.net.
Check the documentation for a complete list of features.
.NET support
- .NET 6 Web App
- .NET 6 Console App
- .NET Core Web App
- .NET Core Console App
- ASP.NET MVC
- ASP.NET WebApi
- .NET Framework Console App
Why KissLog?
KissLog implements three main components: logging functionality, exceptions tracking and application insights.
For web applications, KissLog automatically captures all the HTTP properties.
KissLog keeps the log events in memory and sends them to the registered listeners all at once. This can help reduce the load of the persistence implementation (such as Disk I/O, database operations or network throughput).
Centralized logging using logBee.net or logBee on-premises app.
<table><tr><td> <img alt="logBee.net centralized logging" width="600" src="https://github.com/KissLog-net/KissLog.Sdk/assets/39127098/583ff625-d0ce-4ebc-b0d7-9a3b0257d3ef" /> </td></tr></table>
Basic usage
using KissLog;
using KissLog.Listeners.FileListener;
namespace ConsoleApp
{
class Program
{
static void Main(string[] args)
{
KissLogConfiguration.Listeners
.Add(new LocalTextFileListener("logs", FlushTrigger.OnFlush));
var logger = new Logger();
logger.Trace("Hey, I am a log message");
Logger.NotifyListeners(logger);
}
}
}
Saving the logs
KissLog saves the logs to multiple output locations by using log listeners.
Log listeners are registered at application startup using the KissLogConfiguration.Listeners
container.
Custom log listeners can be easily implemented.
Using interceptors, log listeners can apply conditional filtering rules before saving the events.
namespace ConsoleApp
{
class Program
{
static void Main(string[] args)
{
KissLogConfiguration.Listeners
.Add(new LocalTextFileListener("logs", FlushTrigger.OnMessage))
.Add(new CustomMongoDbListener("mongodb://localhost:27017", "Logs")
{
Interceptor = new LogLevelInterceptor(LogLevel.Information)
});
var logger = new Logger();
logger.Trace("Hey, I am a log message");
Logger.NotifyListeners(logger);
}
}
}
Configuration
KissLog supports various configuration options using the KissLogConfiguration.Options
configuration object.
private void ConfigureKissLog
{
KissLogConfiguration.Options
.AppendExceptionDetails((Exception ex) =>
{
if (ex is DivideByZeroException zeroDivisionEx)
return ">>> Should check if the denominator is zero before dividing";
return null;
});
}
Samples
Check the test applications for more examples of using KissLog.
Feedback
Please use the issues section to report bugs, suggestions and general feedback.
Contributing
All contributions are very welcomed: code, documentation, samples, bug reports, feature requests.
License
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET Framework | net462 is compatible. net463 was computed. net47 was computed. net471 is compatible. net472 was computed. net48 was computed. net481 is compatible. |
-
.NETFramework 4.6.2
- KissLog.AspNet.Web (>= 5.3.0)
- Microsoft.AspNet.Mvc (>= 5.3.0)
-
.NETFramework 4.7.1
- KissLog.AspNet.Web (>= 5.3.0)
- Microsoft.AspNet.Mvc (>= 5.3.0)
-
.NETFramework 4.8.1
- KissLog.AspNet.Web (>= 5.3.0)
- Microsoft.AspNet.Mvc (>= 5.3.0)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
5.3.1 | 100 | 10/16/2024 |
5.3.0 | 103 | 8/12/2024 |
5.2.0 | 134 | 5/3/2024 |
5.1.2 | 1,690 | 5/2/2022 |
5.1.1 | 843 | 12/27/2021 |
5.1.0 | 792 | 12/26/2021 |
5.0.0 | 881 | 11/6/2021 |
4.2.0 | 968 | 8/6/2021 |
4.1.0 | 1,062 | 1/31/2021 |
4.0.0 | 1,116 | 9/21/2020 |
3.5.6 | 1,657 | 3/3/2020 |
3.5.5 | 1,220 | 12/13/2019 |
3.5.4 | 1,185 | 11/22/2019 |
3.5.3 | 1,097 | 11/22/2019 |
3.5.2 | 1,113 | 11/11/2019 |
3.5.1 | 1,205 | 10/16/2019 |
3.5.0 | 1,119 | 10/12/2019 |
3.4.1 | 1,140 | 9/26/2019 |
3.4.0 | 1,303 | 7/5/2019 |
3.2.1 | 1,164 | 6/19/2019 |
3.2.0 | 1,261 | 5/19/2019 |
3.1.1 | 1,241 | 3/27/2019 |
3.1.0 | 1,220 | 3/26/2019 |
3.0.0 | 1,230 | 3/15/2019 |
2.2.0 | 1,325 | 11/13/2018 |
2.1.0 | 1,332 | 11/7/2018 |
2.0.0 | 1,390 | 10/20/2018 |
1.5.9 | 1,436 | 8/14/2018 |
1.5.8 | 1,479 | 8/13/2018 |
1.5.7 | 1,420 | 8/11/2018 |
1.5.6 | 1,459 | 7/25/2018 |
1.5.5 | 1,403 | 7/25/2018 |
1.5.4 | 1,363 | 7/25/2018 |
1.5.3 | 1,551 | 6/12/2018 |
1.5.2 | 1,472 | 6/5/2018 |
1.5.1 | 1,584 | 5/15/2018 |
1.5.0 | 1,508 | 5/9/2018 |
1.4.6 | 1,531 | 5/7/2018 |
1.4.5 | 1,629 | 5/4/2018 |
1.4.4 | 1,586 | 4/27/2018 |
1.4.3 | 1,536 | 4/27/2018 |
1.4.2 | 1,527 | 4/27/2018 |
1.4.1 | 1,547 | 4/26/2018 |
1.4.0 | 1,514 | 4/13/2018 |
1.3.6 | 1,516 | 2/25/2018 |
1.3.5 | 1,547 | 2/25/2018 |
1.3.4 | 1,571 | 11/18/2017 |
1.3.3 | 1,409 | 11/17/2017 |
1.3.2 | 1,510 | 11/17/2017 |
1.3.1 | 1,411 | 11/14/2017 |
1.3.0 | 1,557 | 11/13/2017 |
1.2.3 | 1,434 | 11/10/2017 |
1.2.2 | 1,466 | 10/28/2017 |
1.2.1 | 1,424 | 10/25/2017 |
1.2.0 | 1,414 | 10/25/2017 |
1.1.1 | 1,458 | 9/6/2017 |
1.1.0 | 1,438 | 8/25/2017 |
1.0.1 | 1,434 | 8/22/2017 |
1.0.0 | 1,476 | 8/22/2017 |