CSharpEssentials.RequestResponseLogging 3.0.4

dotnet add package CSharpEssentials.RequestResponseLogging --version 3.0.4
                    
NuGet\Install-Package CSharpEssentials.RequestResponseLogging -Version 3.0.4
                    
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.4" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="CSharpEssentials.RequestResponseLogging" Version="3.0.4" />
                    
Directory.Packages.props
<PackageReference Include="CSharpEssentials.RequestResponseLogging" />
                    
Project file
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.4
                    
#r "nuget: CSharpEssentials.RequestResponseLogging, 3.0.4"
                    
#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.4
                    
#: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.4
                    
Install as a Cake Addin
#tool nuget:?package=CSharpEssentials.RequestResponseLogging&version=3.0.4
                    
Install as a Cake Tool

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 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.

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 47 5/6/2026
3.0.3 54 5/5/2026
3.0.2 68 5/5/2026
3.0.1 81 5/3/2026
3.0.0 85 5/3/2026
2.1.0 210 11/26/2025
2.0.9 213 9/30/2025
2.0.8 198 9/29/2025
2.0.7 212 9/29/2025
2.0.6 214 9/29/2025
2.0.5 211 9/29/2025
2.0.4 216 9/28/2025
2.0.3 203 9/28/2025
2.0.2 204 9/28/2025
2.0.1 203 9/28/2025
2.0.0 207 9/28/2025
1.0.5 674 1/29/2025
1.0.4 176 1/6/2025
1.0.2 188 12/4/2024
Loading failed