From 82cc5a9fd645b5fb0fe0756753c0dcc5fb1bf98d Mon Sep 17 00:00:00 2001 From: James Bayly <46693720+jamesbayly@users.noreply.github.com> Date: Fri, 23 Sep 2022 11:20:29 +1200 Subject: [PATCH] Fixes #1309 --- packages/node/src/indexer/fetch.service.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/node/src/indexer/fetch.service.ts b/packages/node/src/indexer/fetch.service.ts index 5af758551a..5a66175e70 100644 --- a/packages/node/src/indexer/fetch.service.ts +++ b/packages/node/src/indexer/fetch.service.ts @@ -569,7 +569,7 @@ export class FetchService implements OnApplicationShutdown { const { _metadata: metaData } = dictionary; if (metaData.genesisHash !== this.api.genesisHash.toString()) { - logger.warn(`Dictionary is disabled since now`); + logger.error('The dictionary that you have specified does not match the chain you are indexing, it will be ignored. Please update your project manifest to reference the correct dictionary'); this.useDictionary = false; this.eventEmitter.emit(IndexerEvent.UsingDictionary, { value: Number(this.useDictionary),