MakoIoT.Device.Services.Logging 1.0.70.44424

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

Mako-IoT.Device.Services.Logging

Configurable logger implementation based on Microsoft.Extensions.Logging.ILogger interface. Outputs log into console. Filters messages based on configured log level.

Usage

using Microsoft.Extensions.Logging;

public class MyService
{
    private readonly ILogger _logger;
   
    public MyService(ILogger logger)
    {
        _logger = logger;
    }

    public void DoSomething()
    {
        try
        {
            _logger.LogDebug("Starting...");
           //   
        }
        catch(Exception ex)
        {
          _logger.LogError("Error occured", ex);
        }
    }
}

Register logger in DeviceBuilder

DeviceBuilder.Create()
  .AddLogging(new LoggerConfig(LogLevel.Debug))
  .Build()
  .Start();
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 (1)

Showing the top 1 NuGet packages that depend on MakoIoT.Device.Services.Logging:

Package Downloads
MakoIoT.Device.Services.Logging.Storage

Logging to flash storage and logs upload to Elasticsearch for MAKO-IoT

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
1.0.70.44424 222 9/28/2025
1.0.69.58102 140 9/27/2025
1.0.68.22358 205 7/15/2025
1.0.67.25749 269 4/17/2025
1.0.66.9854 242 4/3/2025
1.0.65.37774 244 4/2/2025
1.0.64.57755 234 3/20/2025
1.0.63.47231 260 3/11/2025
1.0.62.39361 253 3/10/2025
1.0.61.4580 189 2/27/2025
1.0.60.36511 193 2/26/2025
1.0.59.49558 189 2/20/2025
1.0.58.895 188 2/18/2025
1.0.57.41554 191 2/17/2025
1.0.56.7306 201 11/28/2024
1.0.55.3432 171 11/27/2024
1.0.54.52390 199 11/26/2024
1.0.53.55578 187 11/26/2024
1.0.51.55985 183 8/5/2024
1.0.50.55638 173 8/5/2024
Loading failed