CSharpEssentials.RequestResponseLogging
3.0.3
There is a newer version of this package available.
See the version list below for details.
See the version list below for details.
dotnet add package CSharpEssentials.RequestResponseLogging --version 3.0.3
NuGet\Install-Package CSharpEssentials.RequestResponseLogging -Version 3.0.3
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="CSharpEssentials.RequestResponseLogging" Version="3.0.3" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="CSharpEssentials.RequestResponseLogging" Version="3.0.3" />
<PackageReference Include="CSharpEssentials.RequestResponseLogging" />
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add CSharpEssentials.RequestResponseLogging --version 3.0.3
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: CSharpEssentials.RequestResponseLogging, 3.0.3"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package CSharpEssentials.RequestResponseLogging@3.0.3
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=CSharpEssentials.RequestResponseLogging&version=3.0.3
#tool nuget:?package=CSharpEssentials.RequestResponseLogging&version=3.0.3
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
CSharpEssentials.RequestResponseLogging
Configurable middleware for logging HTTP requests and responses in ASP.NET Core.
Features
- Comprehensive Logging — Request/Response bodies, headers, path, method, timing, sizes.
- Configurable Fields — Choose exactly what to log via
LoggingOptions. - Path Filtering — Ignore specific paths (e.g., health checks).
- Attributes —
[SkipRequestLogging],[SkipResponseLogging],[SkipRequestResponseLogging]for fine-grained control.
Installation
dotnet add package CSharpEssentials.RequestResponseLogging
Usage
Registration
using CSharpEssentials.RequestResponseLogging;
var app = builder.Build();
app.AddRequestResponseLogging(opt =>
{
opt.LoggerFactory = app.Services.GetRequiredService<ILoggerFactory>();
opt.LoggingOptions = LoggingOptions.CreateAllFields();
opt.IgnoredPaths = ["/health", "/metrics"];
});
Per-Endpoint Control
using CSharpEssentials.RequestResponseLogging.Attributes;
[HttpPost("login")]
[SkipRequestLogging] // Don't log passwords
public IActionResult Login(LoginRequest request) { /* ... */ }
[HttpGet("large-data")]
[SkipResponseLogging] // Don't log large bodies
public IActionResult GetData() { /* ... */ }
Custom Fields
opt.LoggingOptions.LoggingFields =
[
LogFields.Method,
LogFields.Path,
LogFields.ResponseTiming
];
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net8.0 is compatible. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. net9.0 is compatible. net9.0-android was computed. net9.0-browser was computed. net9.0-ios was computed. net9.0-maccatalyst was computed. net9.0-macos was computed. net9.0-tvos was computed. net9.0-windows was computed. 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. net11.0 is compatible. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
net10.0
- Microsoft.IO.RecyclableMemoryStream (>= 3.0.1)
-
net11.0
- Microsoft.IO.RecyclableMemoryStream (>= 3.0.1)
-
net8.0
- Microsoft.IO.RecyclableMemoryStream (>= 3.0.1)
-
net9.0
- Microsoft.IO.RecyclableMemoryStream (>= 3.0.1)
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 |
|---|---|---|
| 3.0.4 | 0 | 5/6/2026 |
| 3.0.3 | 5 | 5/5/2026 |
| 3.0.2 | 43 | 5/5/2026 |
| 3.0.1 | 80 | 5/3/2026 |
| 3.0.0 | 84 | 5/3/2026 |
| 2.1.0 | 210 | 11/26/2025 |
| 2.0.9 | 210 | 9/30/2025 |
| 2.0.8 | 197 | 9/29/2025 |
| 2.0.7 | 211 | 9/29/2025 |
| 2.0.6 | 213 | 9/29/2025 |
| 2.0.5 | 210 | 9/29/2025 |
| 2.0.4 | 215 | 9/28/2025 |
| 2.0.3 | 202 | 9/28/2025 |
| 2.0.2 | 203 | 9/28/2025 |
| 2.0.1 | 202 | 9/28/2025 |
| 2.0.0 | 205 | 9/28/2025 |
| 1.0.5 | 669 | 1/29/2025 |
| 1.0.4 | 176 | 1/6/2025 |
| 1.0.2 | 188 | 12/4/2024 |
Loading failed