CCSWE.nanoFramework.Logging 1.1.144

dotnet add package CCSWE.nanoFramework.Logging --version 1.1.144
                    
NuGet\Install-Package CCSWE.nanoFramework.Logging -Version 1.1.144
                    
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.144" />
                    
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.144" />
                    
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.144
                    
#r "nuget: CCSWE.nanoFramework.Logging, 1.1.144"
                    
#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.144
                    
#: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.144
                    
Install as a Cake Addin
#tool nuget:?package=CCSWE.nanoFramework.Logging&version=1.1.144
                    
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.144 41 7/14/2026
1.1.143 63 7/11/2026
1.1.142 114 7/1/2026
1.1.141 102 6/30/2026
1.1.140 139 6/26/2026
1.1.139 110 6/24/2026
1.1.138 111 6/24/2026
1.1.137 112 6/24/2026
1.1.136 121 6/23/2026
1.1.135 117 6/1/2026
1.1.134 115 6/1/2026
1.1.133 107 6/1/2026
1.1.130 112 5/31/2026
1.1.129 124 4/23/2026
1.1.128 116 4/23/2026
1.1.127 122 4/15/2026
1.1.124 119 4/15/2026
1.1.123 116 4/14/2026
1.1.122 112 4/13/2026
1.1.117 148 4/13/2026
Loading failed