CSharpEssentials.RequestResponseLogging 3.0.1

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

CSharpEssentials.RequestResponseLogging

CSharpEssentials.RequestResponseLogging provides configurable middleware for logging HTTP requests and responses in ASP.NET Core applications. It supports detailed logging of headers, bodies, timings, and more, with options to filter specific paths or modify behavior per endpoint.

🚀 Features

  • Comprehensive Logging: Log Request/Response bodies, Headers, Path, Method, QueryString, Timing, and Sizes.
  • Configurable: Choose exactly what fields to log (LogFields).
  • Filtering: Ignore specific paths globally.
  • Attributes: Use [SkipRequestLogging], [SkipResponseLogging], or [SkipRequestResponseLogging] on controllers or actions.
  • Custom Handlers: Inject custom logic to handle the log context.

📦 Installation

dotnet add package CSharpEssentials.RequestResponseLogging

🛠 Usage

1. Registration

Register the middleware in your Program.cs or Startup.cs.

using CSharpEssentials.RequestResponseLogging;

var app = builder.Build();

// ... other middleware ...

app.AddRequestResponseLogging(opt =>
{
    // REQUIRED: Provide a LoggerFactory
    opt.LoggerFactory = app.Services.GetRequiredService<ILoggerFactory>();
    
    // Configure what to log
    opt.LoggingOptions = LoggingOptions.CreateAllFields();
    
    // Customize specific options
    opt.LoggingOptions.LoggingLevel = LogLevel.Information;
    opt.LoggingOptions.HeaderKeys = ["User-Agent", "Correlation-ID"]; // Whitelist headers
    
    // Ignore specific paths (e.g., health checks)
    opt.IgnoredPaths = ["/health", "/metrics"];
});

app.Run();

2. Fine-Grained Control

You can disable logging for specific endpoints using attributes.

using CSharpEssentials.RequestResponseLogging.Attributes;

[ApiController]
[Route("api/[controller]")]
public class AuthController : ControllerBase
{
    [HttpPost("login")]
    [SkipRequestLogging] // Don't log the request body (e.g. password)
    public IActionResult Login(LoginRequest request)
    {
        // ...
    }
    
    [HttpGet("heavy-data")]
    [SkipResponseLogging] // Don't log the large response body
    public IActionResult GetHeavyData()
    {
        // ...
    }
}

3. Customizing Log Fields

If you don't want to log everything, specify only the fields you need.

opt.LoggingOptions.LoggingFields = 
[
    LogFields.Method,
    LogFields.Path,
    LogFields.ResponseTiming,
    LogFields.Response // Only response body
];
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 was computed.  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. 
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.1 30 5/3/2026
3.0.0 34 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 658 1/29/2025
1.0.4 176 1/6/2025
1.0.2 188 12/4/2024
1.0.1 180 12/4/2024
1.0.0 195 12/4/2024