Musement.Extensions.Logging
0.9.3
See the version list below for details.
dotnet add package Musement.Extensions.Logging --version 0.9.3
NuGet\Install-Package Musement.Extensions.Logging -Version 0.9.3
<PackageReference Include="Musement.Extensions.Logging" Version="0.9.3" />
paket add Musement.Extensions.Logging --version 0.9.3
#r "nuget: Musement.Extensions.Logging, 0.9.3"
// Install Musement.Extensions.Logging as a Cake Addin #addin nuget:?package=Musement.Extensions.Logging&version=0.9.3 // Install Musement.Extensions.Logging as a Cake Tool #tool nuget:?package=Musement.Extensions.Logging&version=0.9.3
Overview
This repository contains a Serilog log formatter and a convenience extension method to set it up. The formatter is an implementation of TUI Musement's standard logging specifications, the convenience method automatically sets Serilog up as an ILogger implementation and uses the formatter when not in Development mode (so to have human-readable logs at dev-time).
Using it is as simple as:
using Microsoft.Extensions.Logging;
var builder = Host.CreateDefaultBuilder()
.UseMusementLogging();
or (when using Minimal APIs in .NET 6 and WebApplication
)
var builder = WebApplication.CreateBuilder(args);
builder.Host.UseMusementLogging();
Logs will be written to stdout unless the LOG_PATH
environment variable is
set, in that case logs will be written to the file specified in the variable.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. 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 was computed. 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. |
.NET Core | netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard2.0 is compatible. netstandard2.1 was computed. |
.NET Framework | net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen40 was computed. tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETStandard 2.0
- Serilog (>= 2.10.0)
- Serilog.Extensions.Hosting (>= 4.2.0)
- Serilog.Extensions.Logging (>= 3.1.0)
- Serilog.Settings.Configuration (>= 3.3.0)
- Serilog.Sinks.Console (>= 4.0.1)
- Serilog.Sinks.File (>= 5.0.0)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.