AvalonLog 0.12.0

dotnet add package AvalonLog --version 0.12.0
NuGet\Install-Package AvalonLog -Version 0.12.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="AvalonLog" Version="0.12.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add AvalonLog --version 0.12.0
#r "nuget: AvalonLog, 0.12.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.
// Install AvalonLog as a Cake Addin
#addin nuget:?package=AvalonLog&version=0.12.0

// Install AvalonLog as a Cake Tool
#tool nuget:?package=AvalonLog&version=0.12.0

AvalonLog

code size License

logo

AvalonLog is a fast and thread-safe WPF text log viewer for colored text. Including F# printf formatting. Based on AvalonEditB. Works on .NET Framework 4.7.2 and .NET 7.0

Thread-safe means that it can be called from any thread.

Fast means

  • it buffers repeated print calls and updates the view maximum 10 times per second. see source
  • Avalonedit is fast, the view is virtualized. It can easily handle thousands of lines.

Usage

Here an short example for F# interactive in .NET Framework. (for net7.0 you would have to use it in a project)

#r "PresentationCore"
#r "PresentationFramework"
#r "WindowsBase"

#r "nuget: AvalonLog"

open System.Windows

let log = new AvalonLog.AvalonLog() // The main class wrapping an Avalonedit TextEditor as append only log.

// create some printing functions by partial application:
let red   = log.printfColor 255 0 0  // without newline
let blue  = log.printfnColor 0 0 255 // with newline
let green = log.printfnColor 0 155 0 // with newline

// print to log using F# printf formatting
red   "Hello, "
blue  "World!"
red   "The answer"
green " is %d." (40 + 2)

Application().Run(Window(Content=log))  // show WPF window 

this will produce

WPF window

For C# there is

public void AppendWithBrush(SolidColorBrush br, string s)

and similar functions on the AvalonLog instance.

Documentation

See extracted API at fuget.org

License

MIT

Logo by LovePik

Changelog

0.12.0

  • AvalonEditB 2.2.0

0.11.0

  • disable replace in Log
  • AvalonEditB 2.1.0

0.10.0

  • AvalonEditB 2.0.0

0.9.1

  • AvalonEditB 1.8.0

0.9.0

  • AvalonEditB 1.7.0

0.8.3

  • AvalonEditB 1.6.0

0.8.2

  • net7.0
  • AvalonEditB 1.5.1
  • update readme, fix typos

0.7.2

  • fix typos in readme

0.7.1

  • use AvalonEditB 1.4.1
  • fix typos in doc-strings

0.7.0

  • fix crash when Log has more than 1000k characters

0.6.0

  • fix ConditionalTextWriter

0.5.0

  • Update to AvalonEditB 1.3.0
  • target net6.0 and net472
  • fix typos in docstring

0.4.0

  • Update to AvalonEditB 1.2.0
  • Rename GetTextWriterIf to GetConditionalTextWriter

0.3.1

  • Update Xml Doc-strings
Product Compatible and additional computed target framework versions.
.NET net7.0-windows7.0 is compatible.  net8.0-windows was computed. 
.NET Framework net472 is compatible.  net48 was computed.  net481 was computed. 
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

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
0.12.0 310 10/29/2023
0.11.0 136 9/10/2023
0.10.0 162 7/27/2023
0.9.3 148 5/29/2023
0.9.2 148 5/29/2023
0.9.1 159 4/29/2023
0.9.0 170 4/23/2023
0.8.3 300 1/8/2023
0.8.2 289 12/17/2022
0.8.1 302 12/17/2022
0.7.1 418 8/6/2022
0.7.0 420 3/26/2022
0.6.0 5,866 1/11/2022
0.5.0 276 12/11/2021
0.4.0 309 10/19/2021
0.3.1 319 9/27/2021
0.3.0 330 8/23/2021
0.2.0 313 8/22/2021
0.1.0 357 8/21/2021

- AvalonEditB 2.2.0