Skip to content

Commit

Permalink
7143: log verification of AVM proof at info level
Browse files Browse the repository at this point in the history
  • Loading branch information
jeanmon committed Jun 26, 2024
1 parent 16069e1 commit 7e7d84d
Show file tree
Hide file tree
Showing 2 changed files with 189,335 additions and 2 deletions.
4 changes: 2 additions & 2 deletions yarn-project/bb-prover/src/prover/bb_prover.ts
Original file line number Diff line number Diff line change
Expand Up @@ -632,7 +632,7 @@ export class BBNativeRollupProver implements ServerCircuitProver {
await fs.writeFile(verificationKeyPath, verificationKey.keyAsBytes);

const logFunction = (message: string) => {
logger.debug(`BB out - ${message}`);
logger.verbose(`BB out - ${message}`);
};

const result = await verificationFunction(
Expand All @@ -647,7 +647,7 @@ export class BBNativeRollupProver implements ServerCircuitProver {
throw new Error(errorMessage);
}

logger.debug(`Successfully verified proof from key in ${result.durationMs} ms`);
logger.info(`Successfully verified proof from key in ${result.durationMs} ms`);
};

await runInDirectory(this.config.bbWorkingDirectory, operation);
Expand Down
Loading

0 comments on commit 7e7d84d

Please sign in to comment.