Serilog.Sinks.RichTextBox.WinForms.Colored 2.1.0

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

Serilog.Sinks.RichTextBox.WinForms.Colored

NuGet Downloads Latest version License

A Serilog sink that writes log events to a WinForms RichTextBox with support for coloring and custom themes.

Screenshot of Serilog.Sinks.RichTextBox.WinForms.Colored in action

Features

  • Colorful, formatted log events in a WinForms RichTextBox control
  • Dark and Light theme presets with customization options
  • Configurable output templates
  • Auto-scrolling to latest messages
  • Line limiting to control memory usage

Installation

Install the package from NuGet:

Install-Package Serilog.Sinks.RichTextBox.WinForms.Colored

Usage

Basic Setup

Declare your RichTextBox control:

private System.Windows.Forms.RichTextBox richTextBox1;

private void InitializeComponent()
{
    this.richTextBox1.BackColor = System.Drawing.SystemColors.Window;
    this.richTextBox1.Dock = System.Windows.Forms.DockStyle.Fill;
    this.richTextBox1.Font = new System.Drawing.Font("Consolas", 10.8F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point);
    this.richTextBox1.Location = new System.Drawing.Point(0, 0);
    this.richTextBox1.Name = "richTextBox1";
}

Configure the logger:

Log.Logger = new LoggerConfiguration()
    .WriteTo.RichTextBox(richTextBox1)
    .CreateLogger();

Log.Information("Hello, world!");

Advanced Configuration

You can customize the sink using various parameters from the RichTextBox extension method:

Log.Logger = new LoggerConfiguration()
    .WriteTo.RichTextBox(
        richTextBoxControl: richTextBox1,
        minimumLogEventLevel: LogEventLevel.Debug,
        outputTemplate: "[{Timestamp:HH:mm:ss} {Level:u3}] {Message:lj}{NewLine}{Exception}",
        theme: ThemePresets.Light,
        messageBatchSize: 100,
        messagePendingInterval: 10,
        autoScroll: true,
        maxLogLines: 1000)
    .CreateLogger();

Themes

Available built-in themes:

Theme Description
ThemePresets.Dark Similar to the default theme of Serilog.Sinks.Console
ThemePresets.Light Light background with contrasting colors

Frequently Asked Questions

Why is the package name so long?

The long name Serilog.Sinks.RichTextBox.WinForms.Colored follows the Serilog naming convention while being specific about the functionality. Shorter alternatives were already reserved in the NuGet registry but were not used, so a more descriptive name was needed for this implementation.

Why use a WinForms solution instead of the WPF one?

This sink was designed specifically for WinForms applications to avoid unnecessary dependencies. Including a WPF-based logging component in a WinForms application would require including the entire WPF framework as a dependency, significantly increasing the footprint of the application for what should be a small logging feature.

Support and Contribute

If you find value in this project, there are several ways you can contribute:

  • Give the project a star on GitHub.
  • Support the project through GitHub Sponsors.
  • Improve documentation, report bugs, or submit pull requests.

License

This project is licensed under the Apache License, Version 2.0.

Product Compatible and additional computed target framework versions.
.NET net6.0-windows7.0 is compatible.  net7.0-windows was computed.  net8.0-windows was computed.  net8.0-windows7.0 is compatible.  net9.0-windows was computed. 
.NET Framework net462 is compatible.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • .NETFramework 4.6.2

  • net6.0-windows7.0

  • net8.0-windows7.0

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
2.1.0 243 17 days ago
2.0.0 6,545 7 months ago
1.2.2 5,202 4/15/2024
1.2.1 1,171 3/30/2024
1.2.0 4,664 9/25/2023
1.1.2 9,381 10/16/2022
1.1.1 853 9/9/2022
1.1.0 1,188 6/24/2022
1.0.2 867 6/11/2022
1.0.1 893 5/16/2022
1.0.0 878 5/9/2022

- Deprecated configurables from v1 removed.
- Removed support for net452, minimum version is now net462.
- Added support for all Serilog 2.12.x versions and higher.

See repository for more information:
https://github.com/vonhoff/Serilog.Sinks.RichTextBox.WinForms.Colored