jet / FsKafka

Minimal F# wrappers for Confluent.Kafka+librdkafka.redist 1.x
https://github.com/jet/dotnet-templates
Apache License 2.0
88 stars 17 forks source link

Adding exception logging for consumer's batch processing loop #78

Closed wantastic84 closed 4 years ago

wantastic84 commented 4 years ago

Although any uncaught exception within the consumer's batch processing loop will bubble up to the client, it is helpful to log the exception in case the client does not properly handle/log it. FsKafka simply logs the fully qualified name of the exception along with the exception message, but the full stacktrace and such needs to be logged from the client side.

bartelink commented 4 years ago

Looks great, thanks!