Skip to content

Commit

Permalink
fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Thunkar committed Dec 9, 2024
1 parent 4d3aefb commit 7ff9aac
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
1 change: 0 additions & 1 deletion avm-transpiler/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 5 additions & 1 deletion yarn-project/kv-store/src/interfaces/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,12 @@ export const mockLogger = {
info: (msg: string, data: any) => console.log(msg, data),
warn: (msg: string, data: any) => console.log(msg, data),
error: (msg: string, data: any) => console.error(msg, data),
silent: (msg: string, data: any) => console.log(msg, data),
fatal: (msg: string, data: any) => console.error(msg, data),
silent: (_msg: string, _data: any) => {},
verbose: (msg: string, data: any) => console.log(msg, data),
trace: (msg: string, data: any) => console.log(msg, data),
level: 'trace' as const,
isLevelEnabled: (_level: string) => true,
};
/* eslint-enable no-console */

Expand Down

0 comments on commit 7ff9aac

Please sign in to comment.