Skip to content

Latest commit

 

History

History

Bet.Extensions.Logging

Bet.Extensions.Logging

GitHub license Build status NuGet feedz.io

The second letter in the Hebrew alphabet is the ב bet/beit. Its meaning is "house". In the ancient pictographic Hebrew it was a symbol resembling a tent on a landscape.

Note: Pre-release packages are distributed via feedz.io.

Summary

This project extends logging functionality.

buymeacoffee

Give a Star! ⭐

If you like or are using this project to learn or start your solution, please give it a star. Thanks!

Install

    dotnet add package Bet.Extensions.Logging

Usage

Sometimes we need to have tracing information enable to see where the configuration details are loaded from.

    new HostBuilder()
          .ConfigureAppConfiguration((context, configBuilder) =>
          {
               configBuilder.Build().DebugConfigurations();
          }

In order for this library to work with Microsoft ApplicationInsights please register the workers within DI:

            .ConfigureServices(services =>
                {
                    services.AddApplicationInsightsTelemetryWorkerService();
                })