`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
ILogger
ILogger
instance. Problem is,
SerilogTimings
SerilogTimings
works on a
Serilog.ILogger
Serilog.ILogger
instance, not
MEL.ILogger
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?