nanoFramework.Logging.Serial 1.1.94

The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org. Prefix Reserved
dotnet add package nanoFramework.Logging.Serial --version 1.1.94
NuGet\Install-Package nanoFramework.Logging.Serial -Version 1.1.94
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="nanoFramework.Logging.Serial" Version="1.1.94" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add nanoFramework.Logging.Serial --version 1.1.94
#r "nuget: nanoFramework.Logging.Serial, 1.1.94"
#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.
// Install nanoFramework.Logging.Serial as a Cake Addin
#addin nuget:?package=nanoFramework.Logging.Serial&version=1.1.94

// Install nanoFramework.Logging.Serial as a Cake Tool
#tool nuget:?package=nanoFramework.Logging.Serial&version=1.1.94

Quality Gate Status Reliability Rating License NuGet #yourfirstpr Discord

nanoFramework logo


Welcome to the .NET nanoFramework nanoFramework.Logging Library repository

Build status

Component Build Status NuGet Package
nanoFramework.Logging Build Status NuGet
nanoFramework.Logging.Serial Build Status NuGet
nanoFramework.Logging.Stream Build Status NuGet
nanoFramework.Logging.Syslog Build Status NuGet

Feedback and documentation

For documentation, providing feedback, issues and finding out how to contribute please refer to the Home repo.

Join our Discord community here.

Credits

The list of contributors to this project can be found at CONTRIBUTORS.

License

The nanoFramework Class Libraries are licensed under the MIT license.

Usage

In your class, make sure you have a global ILogger declared and in your constructor that you call _logger = this.GetCurrentClassLogger();

using Microsoft.Extensions.Logging;
using nanoFramework.Logging;
using System;

namespace UnitTestDebugLogging
{
    internal class MyTestComponent
    {
        private ILogger _logger;

        public MyTestComponent()
        {
            _logger = this.GetCurrentClassLogger();
        }

        public void DoSomeLogging()
        {
            _logger.LogInformation("An informative message");
            _logger.LogError("An error situation");
            _logger.LogWarning(new Exception("Something is not supported"), "With exception context");
        }
    }
}

In your main code, you'll need to create a logger:

LogDispatcher.LoggerFactory = new DebugLoggerFactory();
// Then you can create your object and the logging will happen
MyTestComponent test = new MyTestComponent();
test.DoSomeLogging();

You can have 3 different types of logger: Debug, Serial and Stream.

Debug logger

As presented previously, you can use the Factory pattern:

LogDispatcher.LoggerFactory = new DebugLoggerFactory();
// Then you can create your object and the logging will happen
MyTestComponent test = new MyTestComponent();
test.DoSomeLogging();

You can as well directly create a DebugLogger:

DebugLogger _logger;
_logger = new DebugLogger("test");
_logger.MinLogLevel = LogLevel.Trace; 
_logger.LogTrace("This is a trace");

Serial logger

You can use the Factory pattern:

LogDispatcher.LoggerFactory = new SerialLoggerFactory("COM6");
// Then you can create your object and the logging will happen
MyTestComponent test = new MyTestComponent();
test.DoSomeLogging();

Note that you can adjust the baud speed and all other elements.

Or directly using a SerialLogger:

SerialPort _serial;
_serial = new SerialPort("COM6", 115200);
SerialLogger _logger = new SerialLogger(ref _serial);
_logger.MinLogLevel = LogLevel.Trace; 
_logger.LogTrace("This is a trace");

Important: make sure to refer to the documentation of your board to understand how to properly setup the serial port. The tests include an example with an ESP32.

Stream logger

Similar as for the others, you can either use a FileStream or a Stream in the LoggerFactory:

MemoryStream memoryStream = new MemoryStream();
LogDispatcher.LoggerFactory = new StreamLoggerFactory(memoryStream);
MyTestComponent test = new MyTestComponent();
test.DoSomeLogging();

And you can as well use it directly:

var _stream = new FileStream("D:\\mylog.txt", FileMode.Open, FileAccess.ReadWrite);
StreamLogger _logger = new StreamLogger(_stream);
_logger.MinLogLevel = LogLevel.Trace; 
_logger.LogTrace("This is a trace");

Important: please refer to the documentation for USB and SD Card reader to make sure they are properly setup before trying to setup the logger.

Create your own logger

You can create your own logger using the ILogger and ILoggerFactory interfaces. The DebugLogger is the simplest one.

The Log extensions

Different Log extensions are at your disposal to help you log the way you like. You can simply log a string or having parameters as well as exception and EventId:

_logger.LogTrace("TRACE {0} {1}", new object[] { "param 1", 42 });
_logger.LogDebug("DEBUG {0} {1}", new object[] { "param 1", 42 });
_logger.LogInformation("INFORMATION and nothing else");
_logger.LogWarning("WARNING {0} {1}", new object[] { "param 1", 42 });
_logger.LogError(new Exception("Big problem"), "ERROR {0} {1}", new object[] { "param 1", 42 });
_logger.LogCritical(42, new Exception("Insane problem"), "CRITICAL {0} {1}", new object[] { "param 1", 42 });

Note that all log level extensions have a minimum of string logging upo to EventId, string, parameters and exception. You are responsible to format properly the string when there are parameters.

Log level

You can adjust the log level in all the predefined logger. For example:

DebugLogger _logger;
_logger = new DebugLogger("test");
_logger.MinLogLevel = LogLevel.Trace;
_logger.LogTrace("This will be displayed");
_logger.LogCritical("Critical message will be displayed");
_logger.MinLogLevel = LogLevel.Critical;
_logger.LogTrace("This won't be displayed, only critical will be");
_logger.LogCritical("Critical message will be displayed");

Create your own formatting

You can use a custom formatter which will give you the name of the logger, the log level, the event ID, the message itself and a potential exception. The function definition should follow the following pattern:

public interface IMessageFormatter
{     
    string MessageFormatter(string className, LogLevel logLevel, EventId eventId, string state, Exception exception);
}

Important: this function will be called directly, without instantiating the class it is part of. So make sure either this function is a static, either it's part of the class using the logger. The static option always works. The interface is given for convenience and to give the format.

To setup the formatting, just use the following line. The type of the class containing the function and the exact name of the function are required.

LoggerExtensions.MessageFormatter = typeof(MyFormatter).GetType().GetMethod("MessageFormatterStatic");

public class MyFormatter
{        
    public string MessageFormatterStatic(string className, LogLevel logLevel, EventId eventId, string state, Exception exception)
    {
        string logstr = string.Empty;
        switch (logLevel)
        {
            case LogLevel.Trace:
                logstr = "TRACE: ";
                break;
            case LogLevel.Debug:
                logstr = "I love debug: ";
                break;
            case LogLevel.Warning:
                logstr = "WARNING: ";
                break;
            case LogLevel.Error:
                logstr = "ERROR: ";
                break;
            case LogLevel.Critical:
                logstr = "CRITICAL:";
                break;
            case LogLevel.None:
            case LogLevel.Information:
            default:
                break;
        }

        string eventstr = eventId.Id != 0 ? $" Event ID: {eventId}, " : string.Empty;
        string msg = $"[{className}] {eventstr}{logstr} {state}";
        if (exception != null)
        {
            msg += $" {exception}";
        }

        return msg;
    }
}

You are free to use anything you'd like and format as you like the message.

Note: It is not necessary to add a \r\n at the end, this is done by each logger.

Code of Conduct

This project has adopted the code of conduct defined by the Contributor Covenant to clarify expected behaviour in our community. For more information see the .NET Foundation Code of Conduct.

.NET Foundation

This project is supported by the .NET Foundation.

Product Compatible and additional computed target framework versions.
.NET Framework net is compatible. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories (1)

Showing the top 1 popular GitHub repositories that depend on nanoFramework.Logging.Serial:

Repository Stars
nanoframework/Samples
🍬 Code samples from the nanoFramework team used in testing, proof of concepts and other explorational endeavours
Version Downloads Last updated
1.1.94 110 4/10/2024
1.1.92 76 4/9/2024
1.1.90 76 4/8/2024
1.1.88 99 4/4/2024
1.1.86 77 4/3/2024
1.1.84 83 4/3/2024
1.1.81 180 2/1/2024
1.1.79 78 1/26/2024
1.1.76 310 11/16/2023
1.1.74 124 11/10/2023
1.1.63 754 1/4/2023
1.1.60 336 12/28/2022
1.1.58 310 12/28/2022
1.1.47 580 10/28/2022
1.1.45 420 10/26/2022
1.1.43 401 10/26/2022
1.1.41 399 10/25/2022
1.1.39 418 10/25/2022
1.1.37 401 10/24/2022
1.1.35 421 10/24/2022
1.1.33 428 10/24/2022
1.1.31 415 10/23/2022
1.1.29 418 10/23/2022
1.1.27 415 10/22/2022
1.1.25 430 10/10/2022
1.1.23 394 10/7/2022
1.1.19 460 9/22/2022
1.1.17 491 9/16/2022
1.1.15 457 9/15/2022
1.1.13 473 9/15/2022
1.1.9 490 9/15/2022
1.1.7 473 9/15/2022
1.1.2 509 8/5/2022
1.0.1.29 543 6/17/2022
1.0.1.27 449 6/16/2022
1.0.1.25 430 6/14/2022
1.0.1.23 431 6/13/2022
1.0.1.21 453 6/9/2022
1.0.1.19 439 6/8/2022
1.0.1.15 464 5/27/2022
1.0.1.13 473 5/19/2022
1.0.1.12 508 5/4/2022
1.0.1 598 3/28/2022
1.0.1-preview.32 111 3/28/2022
1.0.1-preview.31 107 3/28/2022
1.0.1-preview.30 105 3/28/2022
1.0.1-preview.28 117 3/18/2022
1.0.1-preview.27 107 3/17/2022
1.0.1-preview.26 101 3/15/2022
1.0.1-preview.25 103 3/14/2022
1.0.1-preview.24 98 3/11/2022
1.0.1-preview.23 112 2/25/2022
1.0.1-preview.21 158 2/17/2022
1.0.1-preview.19 116 2/11/2022
1.0.1-preview.18 112 2/8/2022
1.0.1-preview.17 125 2/4/2022
1.0.1-preview.16 125 1/28/2022
1.0.1-preview.15 116 1/28/2022
1.0.1-preview.14 121 1/28/2022
1.0.1-preview.13 122 1/27/2022
1.0.1-preview.12 124 1/26/2022
1.0.1-preview.11 125 1/25/2022
1.0.1-preview.10 121 1/25/2022
1.0.1-preview.9 125 1/21/2022
1.0.1-preview.8 118 1/21/2022
1.0.1-preview.6 135 1/14/2022
1.0.1-preview.4 129 1/4/2022
1.0.1-preview.3 124 12/29/2021
1.0.0 531 12/5/2021
1.0.0-preview.142 141 12/5/2021
1.0.0-preview.141 143 12/5/2021
1.0.0-preview.137 137 10/19/2021
1.0.0-preview.135 178 10/18/2021
1.0.0-preview.133 177 10/15/2021
1.0.0-preview.131 168 9/30/2021
1.0.0-preview.129 153 9/27/2021
1.0.0-preview.127 245 9/26/2021
1.0.0-preview.122 651 7/18/2021
1.0.0-preview.120 217 7/17/2021
1.0.0-preview.118 142 7/16/2021
1.0.0-preview.116 157 7/15/2021
1.0.0-preview.114 155 7/14/2021
1.0.0-preview.110 183 6/29/2021
1.0.0-preview.108 249 6/27/2021
1.0.0-preview.106 157 6/21/2021
1.0.0-preview.104 177 6/20/2021
1.0.0-preview.102 133 6/19/2021
1.0.0-preview.100 139 6/19/2021
1.0.0-preview.98 214 6/9/2021
1.0.0-preview.96 162 6/8/2021
1.0.0-preview.94 151 6/7/2021
1.0.0-preview.92 174 6/7/2021
1.0.0-preview.90 164 6/6/2021
1.0.0-preview.88 250 6/5/2021
1.0.0-preview.86 142 6/4/2021
1.0.0-preview.84 138 6/3/2021
1.0.0-preview.82 171 6/3/2021
1.0.0-preview.80 146 6/2/2021
1.0.0-preview.78 175 6/1/2021
1.0.0-preview.76 182 5/31/2021
1.0.0-preview.74 185 5/31/2021
1.0.0-preview.72 180 5/31/2021
1.0.0-preview.70 207 5/30/2021
1.0.0-preview.68 179 5/30/2021
1.0.0-preview.66 148 5/29/2021
1.0.0-preview.64 149 5/27/2021
1.0.0-preview.62 153 5/26/2021
1.0.0-preview.60 185 5/25/2021
1.0.0-preview.58 277 5/23/2021
1.0.0-preview.56 169 5/22/2021
1.0.0-preview.54 201 5/21/2021
1.0.0-preview.52 205 5/20/2021
1.0.0-preview.50 142 5/19/2021
1.0.0-preview.48 174 5/19/2021
1.0.0-preview.46 266 5/16/2021
1.0.0-preview.44 159 5/15/2021
1.0.0-preview.42 150 5/14/2021
1.0.0-preview.40 164 5/13/2021
1.0.0-preview.38 137 5/12/2021
1.0.0-preview.36 211 5/7/2021
1.0.0-preview.34 208 5/6/2021
1.0.0-preview.32 139 5/5/2021
1.0.0-preview.30 158 5/4/2021
1.0.0-preview.28 143 5/4/2021
1.0.0-preview.26 155 4/23/2021
1.0.0-preview.25 144 4/12/2021
1.0.0-preview.24 155 4/10/2021
1.0.0-preview.21 668 4/9/2021
1.0.0-preview.19 166 4/9/2021
1.0.0-preview.17 166 4/8/2021
1.0.0-preview.14 172 4/8/2021
1.0.0-preview.13 174 4/8/2021