public async executePostMessageSent(message: IMessage, read: IRead, http: IHttp, persistence: IPersistence, modify: IModify): Promise<void> {
const association = new RocketChatAssociationRecord(RocketChatAssociationModel.MISC, 'message-count');
const persis = read.getPersistenceReader();
const record = await persis.readByAssociation(association);
if (record?.count) count = record.count;
await persistence.createWithAssociation({ count: ++count || 0 }, association);
console.log(`Message Sent Count: ${ count }`)
return this.getLogger().error(err);