Skip to content

Commit

Permalink
up
Browse files Browse the repository at this point in the history
  • Loading branch information
lmolkova committed Aug 25, 2023
1 parent 2a58e11 commit 0afa866
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ static final class AutoCompleteSubscriber extends BaseSubscriber<ServiceBusMessa
protected void hookOnSubscribe(Subscription subscription) {
logger.atInfo()
.addKeyValue("subscription", subscription)
.log("Subscription received.", subscription);
.log("Subscription received. Subscribing downstream.");
downstream.onSubscribe(this);
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -418,7 +418,7 @@ private ServiceBusReceivedMessage deserializeMessage(Message amqpMessage) {

} else {
LOGGER.atWarning()
.addKeyValue("actualType", body.getClass())
.addKeyValue("actualType", body.getType())
.log("Message body is not correct. Not setting body contents.");

amqpMessageBody = AmqpMessageBody.fromData(EMPTY_BYTE_ARRAY);
Expand Down

0 comments on commit 0afa866

Please sign in to comment.