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 0e4f8c3
Showing 1 changed file with 2 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.info(`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

0 comments on commit 0e4f8c3

Please sign in to comment.