Skip to content

Commit

Permalink
Adding a help message to the get events log
Browse files Browse the repository at this point in the history
  • Loading branch information
jamiehewitt15 committed Sep 4, 2024
1 parent 3f5fd81 commit bcf688e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/Indexer/crawlerThread.ts
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ export async function processNetworkData(
} catch (error) {
INDEXER_LOGGER.log(
LOG_LEVELS_STR.LEVEL_WARN,
`Get events for network: ${rpcDetails.network} failure: ${error.message} `,
`Get events for network: ${rpcDetails.network} failure: ${error.message} \n\nConsider that there may be an issue with your RPC provider. We recommend using private RPCs from reliable providers such as Infura or Alchemy.`,
true
)
chunkSize = Math.floor(chunkSize / 2) < 1 ? 1 : Math.floor(chunkSize / 2)
Expand Down

0 comments on commit bcf688e

Please sign in to comment.