Kck.Logging.Serilog
3.4.0
dotnet add package Kck.Logging.Serilog --version 3.4.0
NuGet\Install-Package Kck.Logging.Serilog -Version 3.4.0
<PackageReference Include="Kck.Logging.Serilog" Version="3.4.0" />
<PackageVersion Include="Kck.Logging.Serilog" Version="3.4.0" />
<PackageReference Include="Kck.Logging.Serilog" />
paket add Kck.Logging.Serilog --version 3.4.0
#r "nuget: Kck.Logging.Serilog, 3.4.0"
#:package Kck.Logging.Serilog@3.4.0
#addin nuget:?package=Kck.Logging.Serilog&version=3.4.0
#tool nuget:?package=Kck.Logging.Serilog&version=3.4.0
Kck.Logging.Serilog
Serilog integration for Kck applications with structured request logging, enrichers, and sink configuration via appsettings.json.
Installation
dotnet add package Kck.Logging.Serilog
Quick Start
// Program.cs
builder.AddKckSerilog();
var app = builder.Build();
app.UseSerilogRequestLogging(options =>
{
options.EnrichDiagnosticContext = (ctx, httpContext) =>
{
ctx.Set("UserId", httpContext.User?.Identity?.Name ?? "anonymous");
};
});
// appsettings.json
{
"Serilog": {
"MinimumLevel": { "Default": "Information" },
"WriteTo": [
{ "Name": "Console" },
{ "Name": "File", "Args": { "path": "logs/app-.log", "rollingInterval": "Day" } }
]
}
}
Configuration
| Property | Description | Default |
|---|---|---|
MinimumLevel |
Global minimum log level | Information |
WriteTo |
Serilog sink configuration array | Console sink |
Enrich |
Enricher list (FromLogContext, WithMachineName) |
FromLogContext |
Resources
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net10.0 is compatible. net10.0-android was computed. net10.0-browser was computed. net10.0-ios was computed. net10.0-maccatalyst was computed. net10.0-macos was computed. net10.0-tvos was computed. net10.0-windows was computed. |
-
net10.0
- Serilog.AspNetCore (>= 10.0.0)
- Serilog.Formatting.Compact (>= 3.0.0)
NuGet packages (3)
Showing the top 3 NuGet packages that depend on Kck.Logging.Serilog:
| Package | Downloads |
|---|---|
|
Kck.Bundle.WebApi
Opinionated ASP.NET Core WebAPI starter pack. Registers Serilog, in-memory caching, JWT auth, Argon2 hashing, InMemory event bus, OpenTelemetry, rate limiting, security headers, CORS, and global exception handling in a single AddKckWebApiDefaults() call. |
|
|
Kck.Bundle.WorkerService
Opinionated .NET Worker Service starter pack. Registers Serilog, OpenTelemetry, InMemory event bus, and a mutually-exclusive background job scheduler (Hangfire or Quartz) in a single call. |
|
|
Kck.Bundle.MinimalApi
Lightweight ASP.NET Core Minimal API starter pack. Slim variant of the WebAPI bundle — provides Serilog, in-memory caching, JWT, exception handling, and health checks without MediatR pipeline or Argon2 overhead. |
GitHub repositories
This package is not used by any popular GitHub repositories.