NextGenSoftware.Logging 2.0.3

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

NextGenSoftware.Logging

A flexible, pluggable logging library with a clean ILogger/ILogProvider abstraction — used across the entire OASIS Omniverse ecosystem (HoloNET, OASIS API, STAR ODK, OurWorld, and more).

NuGet License: MIT .NET

Part of the OASIS Omniverse v2.0 Reboot. Visit oasisomniverse.one.


Features

  • Pluggable provider model — register multiple simultaneous providers; all receive every log call
  • Built-in DefaultLogger with configurable colour output
  • File logger out of the box
  • NLog integration via the companion NextGenSoftware.Logging.NLog package
  • Write your own provider by implementing ILogProvider
  • Configurable log levels and async log dispatch
  • Multi-target: .NET 8, .NET 9, .NET 10

Installation

dotnet add package NextGenSoftware.Logging

Quick Start

using NextGenSoftware.Logging;

var logger = new Logger();
logger.RegisterProvider(new DefaultLogger());        // coloured console
logger.RegisterProvider(new FileLogger("app.log"));  // file output

logger.Log("Application started.", LogType.Info);
logger.Log("Something went wrong!", LogType.Error);

Custom Provider

public class MyProvider : ILogProvider
{
    public void Log(string message, LogType logType)
    {
        MyTelemetrySystem.Send(message, logType.ToString());
    }
}
logger.RegisterProvider(new MyProvider());

Log Levels

Level Use
LogType.Debug Verbose trace for development
LogType.Info Normal operational messages
LogType.Warning Recoverable unexpected conditions
LogType.Error Failures requiring attention

MIT — Copyright (c) NextGen Software Ltd 2019 - 2026

Product Compatible and additional computed target framework versions.
.NET net8.0 is compatible.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 is compatible.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 is compatible.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (7)

Showing the top 5 NuGet packages that depend on NextGenSoftware.Logging:

Package Downloads
NextGenSoftware.Holochain.HoloNET.Client

The world's first .NET & Unity client for Holochain. Fully upgraded to Holochain 0.6.2 — supports Kitsune2 networking, QUIC transport, updated AdminWebsocket and AppWebsocket conductor APIs, WebSocket handshake authentication headers, and the new conductor YAML config format. Lightweight version: does not bundle the Holochain binaries. Use NextGenSoftware.Holochain.HoloNET.Client.Embedded if you want the conductor auto-started and managed for you.

NextGenSoftware.Holochain.HoloNET.Client.Embedded

The world's first .NET & Unity client for Holochain. Fully upgraded to Holochain 0.6.2 — supports Kitsune2 networking, QUIC transport, updated conductor APIs, and WebSocket handshake authentication headers. This version bundles hc.exe and holochain.exe (v0.6.2) so the Holochain Conductor is auto-started and managed for you. Set HolochainConductorMode.UseEmbedded to activate. For the lightweight version without binaries use NextGenSoftware.Holochain.HoloNET.Client.

NextGenSoftware.WebSocket

A lightweight, high-performance WebSocket client library with a clean event-driven API (OnConnected, OnDisconnected, OnDataReceived, OnError, and more). Used internally by HoloNET (Holochain .NET client) and the OASIS ecosystem. Supports .NET 8, .NET 9, and .NET 10. Easy to embed in any .NET app needing reliable, long-lived WebSocket connections. Part of the OASIS Omniverse ecosystem at https://oasisomniverse.one -- Source: https://github.com/NextGenSoftwareUK/NextGenSoftware-Libraries

NextGenSoftware.Logging.NLog

NLog implementation of the NextGenSoftware.Logging ILogProvider interface — drop-in NLog integration for any OASIS or HoloNET project. Supports all NLog targets, layouts, and rule-based configuration. Part of the OASIS Omniverse ecosystem at https://oasisomniverse.one — Source: https://github.com/NextGenSoftwareUK/NextGenSoftware-Libraries

NextGenSoftware.Holochain.HoloNET.ORM

Powerful ORM built on top of HoloNET Client for Holochain. Enables rapid hApp development via HoloNETEntryBase, HoloNETAuditEntryBase, HoloNETCollection and HoloNETObservableCollection — call Load, Save, Delete with automatic change tracking and rollback. Upgraded to Holochain 0.6.2. Lightweight version: use NextGenSoftware.Holochain.HoloNET.ORM.Embedded if you want the conductor auto-started.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
2.0.3 5 7/14/2026
2.0.2 21 7/14/2026
2.0.1 24 7/14/2026
2.0.0 925 5/26/2024
1.2.0 1,104 5/22/2023
1.1.5 1,386 12/28/2022
1.1.4 1,329 11/27/2022
1.1.3 6,188 8/27/2022
1.1.2 794 8/26/2022
1.1.1 1,208 8/25/2022
1.1.0 1,469 8/22/2022
1.0.0 809 8/18/2022

## v2.0.1 — OASIS Omniverse Reboot (2026)

Part of the biggest NextGen Software release in years! The full OASIS Omniverse ecosystem — powering Our World, the OASIS API (85+ NuGet packages), HoloNET (Holochain .NET client), STAR ODK, and more — has been fully relaunched and rebranded at https://oasisomniverse.one/

After years of continuous development this is the first major v2 release, representing a complete overhaul and modernisation of the entire NextGen Software foundation.

### What's New in v2.0.1
- Added .NET 10 support: now multi-targeting net8.0, net9.0, and net10.0 for future-proof compatibility
- Copyright updated: NextGen Software Ltd 2019 - 2026
- Part of the unified OASIS Omniverse ecosystem at https://oasisomniverse.one/
- Significantly improved error handling, robustness, and API consistency
- Full alignment with the new OASIS Omniverse architecture (WEB4 through WEB10 API tiers)
- All packages updated with correct metadata, repository URLs, and project URLs
- Multiple bug fixes and stability improvements
- Open source under MIT licence — https://github.com/NextGenSoftwareUK/NextGenSoftware-Libraries