Skip to content

Commit

Permalink
Fix routingkey in logged message (#724)
Browse files Browse the repository at this point in the history
  • Loading branch information
spras authored Mar 25, 2024
1 parent b6299e0 commit 8c18f6d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion RabbitMq/Producer.php
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ public function publish($msgBody, $routingKey = null, $additionalProperties = []
$this->logger->debug('AMQP message published', [
'amqp' => [
'body' => $msgBody,
'routingkeys' => $routingKey,
'routingkey' => $real_routingKey,
'properties' => $additionalProperties,
'headers' => $headers,
],
Expand Down

0 comments on commit 8c18f6d

Please sign in to comment.