Stravaig.Extensions.Logging.Diagnostics 3.0.0-preview.463

This is a prerelease version of Stravaig.Extensions.Logging.Diagnostics.
dotnet add package Stravaig.Extensions.Logging.Diagnostics --version 3.0.0-preview.463                
NuGet\Install-Package Stravaig.Extensions.Logging.Diagnostics -Version 3.0.0-preview.463                
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="Stravaig.Extensions.Logging.Diagnostics" Version="3.0.0-preview.463" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Stravaig.Extensions.Logging.Diagnostics --version 3.0.0-preview.463                
#r "nuget: Stravaig.Extensions.Logging.Diagnostics, 3.0.0-preview.463"                
#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 Stravaig.Extensions.Logging.Diagnostics as a Cake Addin
#addin nuget:?package=Stravaig.Extensions.Logging.Diagnostics&version=3.0.0-preview.463&prerelease

// Install Stravaig.Extensions.Logging.Diagnostics as a Cake Tool
#tool nuget:?package=Stravaig.Extensions.Logging.Diagnostics&version=3.0.0-preview.463&prerelease                

About

Stravaig Log Capture is a way to capture the logs in a test and examine them to ensure they are being generated correctly.

Version & Framework support

  • v1.x: Supports .NET Core 3.1 & .NET 5
  • v2.x: Supports .NET 6.0, 7.0 & 8.0
  • v3.x: Supports .NET 6.0, 8.0 & 9.0

Why do I want to test my logs?

Checking logs in test can be beneficial for a number of reasons. For example, in a background service the log is effectively its user interface (the user being the developer or system admin whose job it is to monitor the correct running of background services). By verifying the logs in tests, you can ensure that appropriate information is being delivered.

Logging may also exist to output audit trails for the application, and you need to check in tests that it is being produced correctly.

How to use

For simple tests you can pass the logger into the class under test like this:

[Test]
public void EnsureSomeFunctionalityWorks()
{
    // Arrange
    var logger = new TestCaptureLogger<ServiceClass>();
    var service = new ServiceClass(logger);
    
    // Act
    service.DoSomething();
    
    // Assert
    var logs = logger.GetLogs();
    logs.Count.ShouldBe(1);
    logs[0].OriginalMessage.ShouldBe("Did something.");
}

For more details on more complex scenarios, see the full documentation at https://stravaig-projects.github.io/Stravaig.Extensions.Logging.Diagnostics/

Product Compatible and additional computed target framework versions.
.NET net6.0 is compatible.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  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. 
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 Stravaig.Extensions.Logging.Diagnostics:

Package Downloads
Stravaig.Extensions.Logging.Diagnostics.XUnit

XUnit extensions for Stravaig Logging Capture for Tests. Use version 2.x for .NET 6.0 onwards. Use version 3.x for .NET 6.0, 8.0 & 9.0 onwards.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
3.0.0-preview.463 31 11/16/2024
3.0.0-preview.455 36 11/3/2024
2.2.1 10,180 2/27/2024
2.2.0 2,407 11/15/2023
2.2.0-preview.383 77 11/15/2023
2.1.0 4,125 7/31/2023
2.1.0-preview.356 98 7/30/2023
2.0.1 1,055 6/13/2023
2.0.0 770 2/11/2023
2.0.0-preview.305 97 12/11/2022
1.4.1 1,081 12/6/2022
1.4.0 700 11/13/2022
1.3.3 1,000 9/14/2022
1.3.2 1,087 8/9/2022
1.3.2-preview.267 112 8/9/2022
1.3.1 471 8/6/2022
1.3.1-preview.263 112 8/6/2022
1.3.0 1,411 5/23/2022
1.2.3 732 5/11/2022
1.2.2 960 4/12/2022
1.2.1 911 3/9/2022
1.2.0 1,241 2/6/2022
1.2.0-preview.227 150 12/20/2021
1.2.0-preview.212 245 11/13/2021
1.1.4 1,231 11/13/2021
1.1.3 791 10/12/2021
1.1.2 657 9/14/2021
1.1.1 669 8/11/2021
1.1.0 596 7/30/2021
1.0.1 732 7/14/2021
1.0.0 894 6/19/2021
0.4.4-preview.160 213 6/19/2021
0.4.3 478 6/9/2021
0.4.2 720 5/15/2021
0.4.1 929 4/12/2021
0.4.0 766 3/20/2021
0.4.0-preview.123 222 3/19/2021
0.3.2 960 2/11/2021
0.3.1 1,406 1/13/2021
0.3.0 873 12/14/2020
0.2.2 687 11/22/2020
0.2.1 628 10/25/2020
0.2.0 497 10/20/2020
0.1.0 673 10/8/2020
0.0.3-preview.37 261 10/7/2020