Skip to content

Commit

Permalink
common: tone down subgraph height violation message
Browse files Browse the repository at this point in the history
  • Loading branch information
tmigone committed Nov 12, 2024
1 parent a4ea1a4 commit 881496a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/indexer-common/src/subgraphs.ts
Original file line number Diff line number Diff line change
Expand Up @@ -481,7 +481,7 @@ export class SubgraphFreshnessChecker {
if (blockDistance < 0) {
// Invariant violated: Subgraph can't be ahead of network latest block
const errorMsg = `${this.subgraphName}'s latest indexed block (${latestIndexedBlock}) is higher than Network's latest block (${latestNetworkBlock})`
this.logger.warn(errorMsg, logInfo)
this.logger.trace(errorMsg, logInfo)
}

if (blockDistance > this.threshold) {
Expand Down

0 comments on commit 881496a

Please sign in to comment.