Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 0 additions & 4 deletions yarn-project/simulator/src/client/client_execution_context.ts
Original file line number Diff line number Diff line change
Expand Up @@ -544,10 +544,6 @@ export class ClientExecutionContext extends ViewDataOracle {
);
}

public override debugLog(message: string, fields: Fr[]) {
this.log.verbose(`${applyStringFormatting(message, fields)}`, { module: `${this.log.module}:debug_log` });
}

public getDebugFunctionName() {
return this.db.getDebugFunctionName(this.contractAddress, this.callContext.functionSelector);
}
Expand Down
4 changes: 4 additions & 0 deletions yarn-project/simulator/src/client/view_data_oracle.ts
Original file line number Diff line number Diff line change
Expand Up @@ -290,6 +290,10 @@ export class ViewDataOracle extends TypedOracle {
}

public override debugLog(message: string, fields: Fr[]): void {
// TODO(#10558) Remove this check once the debug log is fixed
if (message.startsWith('Context.note_hashes, after pushing new note hash:')) {
return;
}
this.log.verbose(`${applyStringFormatting(message, fields)}`, { module: `${this.log.module}:debug_log` });
}

Expand Down