CCSWE.nanoFramework.Logging 1.1.145

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