CCSWE.nanoFramework.Logging 1.1.134

There is a newer version of this package available.
See the version list below for details.
dotnet add package CCSWE.nanoFramework.Logging --version 1.1.134
                    
NuGet\Install-Package CCSWE.nanoFramework.Logging -Version 1.1.134
                    
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.134" />
                    
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.134" />
                    
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.134
                    
#r "nuget: CCSWE.nanoFramework.Logging, 1.1.134"
                    
#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.134
                    
#: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.134
                    
Install as a Cake Addin
#tool nuget:?package=CCSWE.nanoFramework.Logging&version=1.1.134
                    
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.135 40 6/1/2026
1.1.134 42 6/1/2026
1.1.133 37 6/1/2026
1.1.130 47 5/31/2026
1.1.129 111 4/23/2026
1.1.128 107 4/23/2026
1.1.127 109 4/15/2026
1.1.124 108 4/15/2026
1.1.123 105 4/14/2026
1.1.122 100 4/13/2026
1.1.117 140 4/13/2026
1.1.114 150 4/10/2026
1.1.113 135 4/10/2026
1.1.112 140 4/9/2026
1.1.104 141 4/8/2026
1.1.103 138 4/8/2026
1.1.101 139 4/7/2026
1.1.100 133 4/7/2026
1.1.99 133 4/7/2026
1.1.97 167 4/2/2026
Loading failed