Nummy.CodeLogger
1.5.0
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 Nummy.CodeLogger --version 1.5.0
NuGet\Install-Package Nummy.CodeLogger -Version 1.5.0
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.5.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Nummy.CodeLogger" Version="1.5.0" />
<PackageReference Include="Nummy.CodeLogger" />
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 Nummy.CodeLogger --version 1.5.0
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: Nummy.CodeLogger, 1.5.0"
#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 Nummy.CodeLogger@1.5.0
#: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=Nummy.CodeLogger&version=1.5.0
#tool nuget:?package=Nummy.CodeLogger&version=1.5.0
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
Nummy Logging package for .NET Core
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
or install the package via NuGet Package Manager Console:
Install-Package Nummy.CodeLogger
Getting Started
1. Run Nummy on your Docker and get DSN url of your local instance
2. Configure your application
In your Program.cs
file add the following line:
using Nummy.HttpLogger.Extensions;
using Nummy.HttpLogger.Models;
// .. other configurations
builder.Services.AddNummyCodeLogger(options =>
options.DsnUrl = "your-nummy-dsn-url");
// .. other configurations
var app = builder.Build();
3. Now, your application is set up to log using the Nummy Code Logger.
Usage
Inject INummyCodeLoggerService
as a normal service:
private readonly INummyCodeLoggerService _loggerService;
public ConstructorOfYourClass(INummyCodeLoggerService loggerService)
{
_loggerService = loggerService;
}
And use it like:
// log infos
await _loggerService.LogInfoAsync("your-info-title", "your-info-description");
// or
await _loggerService.LogInfoAsync(new ArgumentNullException(nameof(YourClass.Property)));
// log errors
await _loggerService.LogErrorAsync("your-error-title", "your-error-description");
// or
await _loggerService.LogErrorAsync(new ArgumentNullException(nameof(YourClass.Property)));
// log customized
await _loggerService.LogAsync(NummyCodeLogLevel.Debug, new ArgumentNullException(nameof(YourClass.Property)));
await _loggerService.LogAsync(NummyCodeLogLevel.Debug, "custom-title", "custom-description");
// and log much more ..
License
This library is licensed under the MIT License.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | 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.
-
net9.0
- Microsoft.AspNetCore.Http (>= 2.2.2)
- Microsoft.Extensions.Http (>= 8.0.0)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.