From 9fb176af3e81acc33c32cafc53fd058f5342a6d9 Mon Sep 17 00:00:00 2001 From: Gabriele Santomaggio Date: Fri, 1 Sep 2023 11:08:01 +0200 Subject: [PATCH] Add more info during the error parse message Signed-off-by: Gabriele Santomaggio --- RabbitMQ.Stream.Client/RawConsumer.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/RabbitMQ.Stream.Client/RawConsumer.cs b/RabbitMQ.Stream.Client/RawConsumer.cs index e25ccb85..9526910b 100644 --- a/RabbitMQ.Stream.Client/RawConsumer.cs +++ b/RabbitMQ.Stream.Client/RawConsumer.cs @@ -215,7 +215,7 @@ Message MessageFromSequence(ref ReadOnlySequence unCompressedData, ref int catch (Exception e) { _logger.LogError(e, - "Error while parsing message on the stream {Stream}. the message will be skipped. " + + "Error while parsing message on the stream {Stream}. The message will be skipped. " + "Please report this issue to the RabbitMQ team on GitHub {Repo}", _config.Stream, Consts.RabbitMQClientRepo); }