Skip to content

Commit 3cc15cd

Browse files
committed
Disable log for every validator
Because it still triggers the 256k limit for logs per request...
1 parent 334f895 commit 3cc15cd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

server/utils/validators.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ export async function storeValidator(address: string, rest: ValidatorJSON = defa
100100
return validatorId
101101
}
102102

103-
console.info(`${upsert ? 'Updating' : 'Storing'} validator ${address}`) // eslint-disable-line no-console
103+
// console.info(`${upsert ? 'Updating' : 'Storing'} validator ${address}`) // eslint-disable-line no-console
104104

105105
const brandingParameters = await handleValidatorLogo(address, rest)
106106
const values = { ...rest, ...brandingParameters, isListed }

0 commit comments

Comments
 (0)