serilog-extensions-logging icon indicating copy to clipboard operation
serilog-extensions-logging copied to clipboard

Serilog provider for Microsoft.Extensions.Logging

Results 35 serilog-extensions-logging issues
Sort by recently updated
recently updated
newest added
trafficstars

Addresses #278 ## Benchmarks result BenchmarkDotNet v0.14.0, Windows 10 (10.0.19045.5247/22H2/2022Update) Intel Core i5-10300H CPU 2.50GHz, 1 CPU, 8 logical and 4 physical cores .NET SDK 9.0.201 [Host] : .NET 8.0.15...

While using MEL logging, the state object is commonly either [FormattedLogValues](https://github.com/dotnet/runtime/blob/main/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/FormattedLogValues.cs) or [LogValues](https://github.com/dotnet/runtime/blob/main/src/libraries/Microsoft.Extensions.Logging.Abstractions/src/LoggerMessage.cs#L466). These types are private structs and implement the IReadOnlyCollection interface. So, there is no way to easily...

fixes #271 NOTE: `ExternalScopeProvider.ForEachScope` processes scopes from outer to inner, which is the opposite of Serilog's scope traversal order. This fix implements `ForEachScopeReversed` and passes `update: false` to the method...

## Description Since version 9.0.1 of Serilog.Extensions.Logging, there has been a change in how values in a scope override each other in LogEvents. Previously, the value passed directly to the...

I don't know how to better explain it, I've tried a lot of things. Eventually I got it working by injecting Serilog.ILogger instead of the ILogger from microsoft, but I...