`Microsoft.Extensions.Logging` and Serilog compatible timing library?
I'm currently using https://github.com/nblumhardt/serilog-timings to log how much time a given operation took. It was nice and all when I was using a static logger, but I wanted to switch to an injected
Problem is,
Is there any other library I could use with Serilog and MEL that would let me easily time whatever operations?
ILogger instance.Problem is,
SerilogTimings works on a Serilog.ILogger instance, not MEL.ILogger which feels kinda smelly to me.Is there any other library I could use with Serilog and MEL that would let me easily time whatever operations?