Skip to content

Commit

Permalink
bug: fix console.log statement in messagequeue.js
Browse files Browse the repository at this point in the history
  • Loading branch information
pauldotyu committed May 9, 2024
1 parent 6f95333 commit 10dea38
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/order-service/plugins/messagequeue.js
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ module.exports = fp(async function (fastify, opts) {

const fullyQualifiedNamespace = process.env.ORDER_QUEUE_HOSTNAME || process.env.AZURE_SERVICEBUS_FULLYQUALIFIEDNAMESPACE;

console.log('sending message ${body} to ${process.env.ORDER_QUEUE_NAME} on ${fullyQualifiedNamespace} using Microsoft Entra ID Workload Identity credentials')
console.log(`sending message ${body} to ${process.env.ORDER_QUEUE_NAME} on ${fullyQualifiedNamespace} using Microsoft Entra ID Workload Identity credentials`);

if (!fullyQualifiedNamespace) {
console.log('no hostname set for message queue. exiting.');
Expand Down

0 comments on commit 10dea38

Please sign in to comment.