refactor: improved logging for mutation cache

pull/2463/head
William Grant 3 years ago
parent b06944fc4b
commit 9251e7687f

@ -84,7 +84,10 @@ export async function processMessagesUsingCache(
const matchSeqno = roomMatches[i].seqno; const matchSeqno = roomMatches[i].seqno;
if (message.seqno && matchSeqno && matchSeqno <= message.seqno) { if (message.seqno && matchSeqno && matchSeqno <= message.seqno) {
const removedEntry = roomMatches.splice(i, 1)[0]; const removedEntry = roomMatches.splice(i, 1)[0];
window.log.info('SOGS Mutation Cache: Entry ignored and removed!', removedEntry); window.log.info(
`SOGS Mutation Cache: Entry ignored and removed in ${server}/${room} for message ${message.id}`,
removedEntry
);
remove(sogsMutationCache, removedEntry); remove(sogsMutationCache, removedEntry);
} }
} }
@ -106,7 +109,7 @@ export async function processMessagesUsingCache(
updatedReactions[reaction].you = true; updatedReactions[reaction].you = true;
updatedReactions[reaction].count += 1; updatedReactions[reaction].count += 1;
window.log.info( window.log.info(
'SOGS Mutation Cache: Added our reaction based on the cache', `SOGS Mutation Cache: Added our reaction based on the cache in ${server}/${room} for message ${message.id}`,
updatedReactions[reaction] updatedReactions[reaction]
); );
break; break;
@ -114,18 +117,28 @@ export async function processMessagesUsingCache(
updatedReactions[reaction].you = false; updatedReactions[reaction].you = false;
updatedReactions[reaction].count -= 1; updatedReactions[reaction].count -= 1;
window.log.info( window.log.info(
'SOGS Mutation Cache: Removed our reaction based on the cache', `SOGS Mutation Cache: Removed our reaction based on the cache in ${server}/${room} for message ${message.id}`,
updatedReactions[reaction] updatedReactions[reaction]
); );
break; break;
case 'CLEAR':
// tslint:disable-next-line: no-dynamic-delete
delete updatedReactions[reaction];
window.log.info(
`SOGS Mutation Cache: Cleared all ${reaction} reactions based on the cache in ${server}/${room} for message ${message.id}`
);
break;
default: default:
window.log.warn( window.log.warn(
'SOGS Mutation Cache: Unsupported metadata action in OpenGroupMessageV4', `SOGS Mutation Cache: Unsupported metadata action in OpenGroupMessageV4 in ${server}/${room} for message ${message.id}`,
reactionMatch reactionMatch
); );
} }
const removedEntry = remove(sogsMutationCache, reactionMatch); const removedEntry = remove(sogsMutationCache, reactionMatch);
window.log.info('SOGS Mutation Cache: Entry removed!', removedEntry); window.log.info(
`SOGS Mutation Cache: Entry removed in ${server}/${room} for message ${message.id}`,
removedEntry
);
} }
} }

Loading…
Cancel
Save