CCSWE.nanoFramework.Logging 1.1.129

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

Build License NuGet

CCSWE.nanoFramework.Logging

Logging infrastructure for nanoFramework backed by Microsoft.Extensions.Logging. Provides a console logger implementation with configurable minimum log level.

API

ConsoleLogger

ILogger implementation that writes formatted log entries to the console. Create directly or via ConsoleLoggerFactory:

var logger = ConsoleLogger.Create(new LoggerOptions { MinLogLevel = LogLevel.Information });

ConsoleLoggerFactory

ILoggerFactory implementation that creates ConsoleLogger instances sharing the same options:

var factory = new ConsoleLoggerFactory(new LoggerOptions { MinLogLevel = LogLevel.Warning });
ILogger logger = factory.CreateLogger("MyCategory");

LoggerOptions

Property Default Description
MinLogLevel LogLevel.Debug Messages below this level are suppressed

DI Registration

services.AddLogging();
// or with options:
services.AddLogging(options => options.MinLogLevel = LogLevel.Information);
Product Compatible and additional computed target framework versions.
.NETnanoFramework netnano1.0 is compatible. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on CCSWE.nanoFramework.Logging:

Package Downloads
CCSWE.nanoFramework.Hosting

Hosting and startup infrastructures for applications.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
1.1.129 100 4/23/2026
1.1.128 102 4/23/2026
1.1.127 99 4/15/2026
1.1.124 101 4/15/2026
1.1.123 100 4/14/2026
1.1.122 95 4/13/2026
1.1.117 135 4/13/2026
1.1.114 145 4/10/2026
1.1.113 130 4/10/2026
1.1.112 135 4/9/2026
1.1.104 136 4/8/2026
1.1.103 133 4/8/2026
1.1.101 134 4/7/2026
1.1.100 128 4/7/2026
1.1.99 128 4/7/2026
1.1.97 162 4/2/2026
Loading failed