isle icon indicating copy to clipboard operation
isle copied to clipboard

ISLE (Interpolated String Logging Extensions) is a library that allows developers to perform structured logging using interpolated strings in C# 10 or later.

Results 4 isle issues
Sort by recently updated
recently updated
newest added

This issue is very similar to #3 As explained there, you have to call `IsleConfiguration.Reset()` to get ASP.NET Core integration tests with ISLE to work. But this only helps as...

Thanks for this library, I'm quite liking using it. However, I'd like to request that the interpolation handlers be changed to regular structs, not ref structs. As far as I...

Hey. I've implemented something very similar at work and had a few ideas I wanted to try out. Since our solutions are so similar but you have a nice benchmark...

Example code: ```cs var now = DateTime.Now; _logger.LogInformation($"property: {now.Day}"); var day = now.Day; _logger.LogInformation($"simple: {day}"); ``` Expected output: ``` property: 24 simple: 24 ``` Actual output: ``` property: {now.Day} simple:...

enhancement