We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9636352 commit 1ae2168Copy full SHA for 1ae2168
1 file changed
src/components/Indexer/processor.ts
@@ -58,9 +58,12 @@ function getEventProcessor(
58
if (!ProcessorClass) {
59
throw new Error(`No processor found for event type: ${eventType}`)
60
}
61
+ INDEXER_LOGGER.debug(
62
+ 'Creating new Processor for event ' + eventType + "with key ' + cacheKey"
63
+ )
64
processorInstances.set(cacheKey, new ProcessorClass(chainId, config))
65
-
66
+ INDEXER_LOGGER.debug('Reusing cached processor for key ' + cacheKey)
67
return processorInstances.get(cacheKey)
68
69
0 commit comments