Nicholas Blumhardt

Results 927 comments of Nicholas Blumhardt

Closing as I don't think there's anything to action in this one, currently.

Hi @hcholm, thanks for dropping us a line! This is by design, "undefined" in the expression language has SQL-style "null semantics". It's not well-documented, I think in the short term...

If you're on Windows it's likely you'll need to replace `\r` too, since line endings are CRLF on that platform. Plugging in a custom function (instructions in the README) like...

Hi @epeshk, thanks for sending this, looks like a fantastic improvement :+1: `DateTime(Offset)` format strings don't have any natural maximum length in .NET, so the following kind of thing is...

Reading the code again, I see that we should fall through and still create correct output in the "too long" case - think it just needs a test :-)

Hi Kris, thanks for the nudge. This one needs the same changes as were made to the `serilog/serilog` one before merging. Cheers!

Hi @MathisDukatz, thanks for the note and the offer of help. This is a valid use case, but in previous discussions of similar features we've chosen to avoid the additional...

Hi @alistair-ocad, This can be achieved by adding [the `Serilog.Sinks.Map` package](https://github.com/serilog/serilog-sinks-map) and using this trick: ```csharp // somewhere static volatile int _version; Log.Logger = new LoggerConfiguration() .WriteTo.Map( _ => _version,...

Thanks for the note. A more detailed code example and stack trace might be needed to pin this down - in normal usage `CreateBootstrapLogger()` and the file sink will coordinate...