Nummy.HttpLogger 1.0.3

There is a newer version of this package available.
See the version list below for details.
dotnet add package Nummy.HttpLogger --version 1.0.3                
NuGet\Install-Package Nummy.HttpLogger -Version 1.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="Nummy.HttpLogger" Version="1.0.3" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Nummy.HttpLogger --version 1.0.3                
#r "nuget: Nummy.HttpLogger, 1.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.
// Install Nummy.HttpLogger as a Cake Addin
#addin nuget:?package=Nummy.HttpLogger&version=1.0.3

// Install Nummy.HttpLogger as a Cake Tool
#tool nuget:?package=Nummy.HttpLogger&version=1.0.3                

Nummy Http Request & Response Logging package for .NET Core

NuGet Version License

Overview

This is a .NET Core library for http request and response logging in your application.

Installation

https://www.nuget.org/packages/Nummy.HttpLogger Or install the package via NuGet Package Manager Console:

Install-Package Nummy.HttpLogger

Getting Started

In your Program.cs file add the following line:

using Nummy.HttpLogger.Extensions;
// .. other configurations

services.AddNummyHttpLogger(options =>
{
    // Configure options here
    // Example: 
    options.EnableRequestLogging = true;
    options.EnableResponseLoggging = true;
    options.ExcludeContainingPaths = new []{"api/user/login", "statistics", "user/create" };
    options.DatabaseType = NummyHttpLoggerDatabaseType.PostgreSql;
    options.DatabaseConnectionString = "your-database-connection-string"
});

// .. other configurations
var app = builder.Build();

Use Middleware: In the Configure method of your Startup.cs file, add the following line:

using Nummy.HttpLogger.Extensions;
var app = builder.Build();

// .. other configurations

app.UseNummyHttpLogger();

// .. other middleware

Now, your application is set up to log http request and responses using the Nummy Http Logger.

License

This library is licensed under the MIT License.

Product Compatible and additional computed target framework versions.
.NET net7.0 is compatible.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  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. 
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
1.0.4 135 11/18/2023
1.0.3 111 11/17/2023
1.0.2 104 11/17/2023
1.0.1 106 11/17/2023
1.0.0 103 11/17/2023