Skip to content

Commit

Permalink
fix: debug message
Browse files Browse the repository at this point in the history
  • Loading branch information
kshitij-k-osmosys committed Jul 30, 2024
1 parent b505177 commit 8d8991b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ export class NotificationQueueProducer {
async addNotificationToQueue(queueType: string, notification: Notification): Promise<void> {
const provider = await this.providersService.getById(notification.providerId);
this.logger.debug(
`Fetched provider ${provider} from notification ${JSON.stringify(notification)}`,
`Fetched provider ${provider.providerId} from notification ${notification.id}`,
);
const queue = this.queueService.getOrCreateQueue(
queueType,
Expand Down

0 comments on commit 8d8991b

Please sign in to comment.