Added logging for RetryPlaceholders.findByMessageAndRemove

This commit is contained in:
Alvaro
2023-02-09 10:35:53 -07:00
committed by GitHub
parent efda924589
commit 57029a9908

View File

@@ -190,6 +190,10 @@ export class RetryPlaceholders {
this.items.splice(index, 1);
this.makeLookups();
log.info(
`RetryPlaceholders.findByMessageAndRemove: Removing ${sentAt} from conversation ${conversationId}`
);
await this.save();
return result;