Skip to content

Commit

Permalink
verkle: Update debug examples in README to use lower case namespacing
Browse files Browse the repository at this point in the history
  • Loading branch information
scorbajio committed Sep 20, 2024
1 parent 8596c5f commit 215484a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packages/verkle/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -107,13 +107,13 @@ DEBUG=ethjs,verkle npx vitest test/verkle.spec.ts
Run with **put** method logging:

```shell
DEBUG=ethjs,verkle:PUT npx vitest test/verkle.spec.ts
DEBUG=ethjs,verkle:put npx vitest test/verkle.spec.ts
```

Run with **verkle** + **put**/**get**/**del** logging:

```shell
DEBUG=ethjs,verkle,verkle:PUT,verkle:GET,verkle:DEL npx vitest test/verkle.spec.ts
DEBUG=ethjs,verkle,verkle:put,verkle:get,verkle:del npx vitest test/verkle.spec.ts
```

Run with max logging:
Expand All @@ -125,7 +125,7 @@ DEBUG=ethjs,verkle:* npx vitest test/verkle.spec.ts
`ethjs` **must** be included in the `DEBUG` environment variables to enable **any** logs.
Additional log selections can be added with a comma separated list (no spaces). Logs with extensions can be enabled with a colon `:`, and `*` can be used to include all extensions.

`DEBUG=ethjs,tie:PUT,trie:FIND_PATH:* npx vitest test/proof.spec.ts`
`DEBUG=ethjs,tie:put,trie:find_path:* npx vitest test/proof.spec.ts`

## References

Expand Down

0 comments on commit 215484a

Please sign in to comment.