Nummy.CodeLogger 1.0.5

dotnet add package Nummy.CodeLogger --version 1.0.5                
NuGet\Install-Package Nummy.CodeLogger -Version 1.0.5                
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.CodeLogger" Version="1.0.5" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Nummy.CodeLogger --version 1.0.5                
#r "nuget: Nummy.CodeLogger, 1.0.5"                
#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.CodeLogger as a Cake Addin
#addin nuget:?package=Nummy.CodeLogger&version=1.0.5

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

Nummy Logging package for .NET Core

NuGet Version License

Overview

This is a .NET Core library for logging in your application. Just set connection string of your database then package will create and manage required tables for itself.

Installation

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

Install-Package Nummy.CodeLogger

Getting Started

In your Program.cs file add the following line:

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

builder.Services.AddNummyCodeLogger(options =>
{
    // Configure options here
    // Example: 
    options.DatabaseType = NummyCodeLoggerDatabaseType.PostgreSql;
    options.DatabaseConnectionString = "Host=localhost;Port=5432;Database=nummy_db;Username=postgres;Password=postgres;IncludeErrorDetail=true;";
});

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

No need to Use Middleware.

Now, your application is set up to log using the Nummy Code 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.5 133 11/23/2023
1.0.0 108 11/23/2023