Commit afb2610 1 parent ba23fea commit afb2610 Copy full SHA for afb2610
File tree 1 file changed +2
-2
lines changed
yarn-project/prover-client/src/prover-agent
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -139,9 +139,9 @@ export class ProverAgent {
139
139
const type = ProvingRequestType [ job . request . type ] ;
140
140
if ( this . isRunning ( ) ) {
141
141
if ( job . request . type === ProvingRequestType . PUBLIC_VM && ! process . env . AVM_PROVING_STRICT ) {
142
- this . log . error ( `Error processing proving job id=${ job . id } type=${ type } : ${ err } `, err ) ;
142
+ this . log . warn ( `Expected error processing VM proving job id=${ job . id } type=${ type } : ${ err } `) ;
143
143
} else {
144
- this . log . warn ( `Ignoring error processing proving job id=${ job . id } type=${ type } : ${ err } `) ;
144
+ this . log . error ( `Error processing proving job id=${ job . id } type=${ type } : ${ err } `, err ) ;
145
145
}
146
146
await jobSource . rejectProvingJob ( job . id , new ProvingError ( ( err as any ) ?. message ?? String ( err ) ) ) ;
147
147
} else {
You can’t perform that action at this time.
0 commit comments