Ruben Bartelink

Results 352 comments of Ruben Bartelink

>> In general I would not lean on passing versions out and then back into APIs; while this is implementable, I don't think its worth demonstrating on the basis that...

An 'update' and/or 'news' would require a) an agreed spec b) a PR implementing that - The first bit can be helped by people providing details of their requirements and/or...

There's nothing stopping you doing a proof of concept as a set of extension methods, is there? One thing I'd point out is that if you follow the tutorial, one...

>I believe this behavior is simular to Serilog (with manual template parsing). The point is that in normal real Serilog, you write `Log.Information("The value is {total}", 1 + 1)`, and...

@kulakovt I'd have to try but... The rules match String.Format rules, i.e. `Log.Information("The value is {0}", 1 + 1)` is acceptable and names the field as `"0"` Also consider that...

Best to work through issues like this on SO - this is about proven bugs that only the maintainers could possibly fix; there are many more people on SO, and...

The [serilog] scope is stored in the .NET ExecutionContext, which is Attached to the logical thread (and flows to child Tasks etc). At the serilog level, you can make a...

I suspect it's not an either/or situation. MEL dictates a lot of how stuff works. I don't know all the details, but I can guarantee someone one SO will have...

Any reason not to make it a straight Event (or an Observable as you've all but suggested above). [Some notes on Observable vs Events](https://stackoverflow.com/questions/24572366/should-iobservable-be-preferred-over-events-when-exposing-notifications-in-a-lib)

> As long as it is a FSharp.Core issue I propose to use a corrected way of awaiting tasks https://github.com/jet/FsKafka/blob/6c6186f822a221adf0ad06e8a44a392aa55aa8ec/src/FsKafka/Infrastructure.fs#L14 instead of `Async.AwaitTask` Note the edition therein in being synced...