Skip to content

Commit

Permalink
Fix typo in debug message
Browse files Browse the repository at this point in the history
  • Loading branch information
cressie176 committed Oct 27, 2023
1 parent 20f517c commit e229ad8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/amqp/SubscriberError.js
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ module.exports = function SubscriptionRecovery(broker, vhost) {
// Channel will already be closed, reclosing will trigger an error
publisherChannel.removeAllListeners();

debug('Message: %s failed to be republished to queue: %s %d times - %e', message.properties.messageId, originalQueue, republished + 1, err.message);
debug('Message: %s failed to be republished to queue: %s %d times - %s', message.properties.messageId, originalQueue, republished + 1, err.message);
ackOrNack(err);
} else {
publisherChannel.close();
Expand Down

0 comments on commit e229ad8

Please sign in to comment.