Skip to content

Commit

Permalink
IHP-32: fix bytes logger
Browse files Browse the repository at this point in the history
  • Loading branch information
DenisNovac committed Sep 28, 2024
1 parent 60996b2 commit d2851eb
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ trait KafkaJsonDeserializer {
decodeByteArray[T](bytes) match {
case Left(value) =>
KafkaJsonDecodingError(
s"Can't decode json kafka message: ${value.getMessage}. Original message: $bytes"
s"Can't decode json kafka message: ${value.getMessage}. Original message: ${new String(bytes)}"
)
.raiseError[F, T]
case Right(value) => value.pure[F]
Expand Down

0 comments on commit d2851eb

Please sign in to comment.