diff --git a/packages/blockchain/README.md b/packages/blockchain/README.md index 22b9689f61..42945a7d10 100644 --- a/packages/blockchain/README.md +++ b/packages/blockchain/README.md @@ -247,7 +247,7 @@ The following initial logger is currently available: | Logger | Description | | ------------------- | ------------------------------------------------------------------------ | -| `blockchain` | Core blockchain operations like when a block or header is put or deleted | +| `blockchain:#` | Core blockchain operations like when a block or header is put or deleted | | `blockchain:clique` | Clique consensus operations like updating the vote and/or signer list | | `blockchain:ethash` | Ethash consensus operations like PoW block or header validation | diff --git a/packages/client/README.md b/packages/client/README.md index face3bcee8..0f73414e54 100644 --- a/packages/client/README.md +++ b/packages/client/README.md @@ -466,7 +466,7 @@ The following options are available: | Logger | Description | | ------------------- | ------------------------------------------------ | -| `client:fetcher` | This option enables logging for all fetchers | +| `client:fetcher:#` | This option enables logging for all fetchers | | `client:fetcher:bytecode` | This option enables logging for the snap sync bytecode fetcher | | `client:fetcher:storage` | This option enables logging for the snap sync storage fetcher | | `client:fetcher:trienode` | This option enables logging for the snap sync trienode fetcher | diff --git a/packages/trie/README.md b/packages/trie/README.md index abb5d75eb3..b1d4e5cc0d 100644 --- a/packages/trie/README.md +++ b/packages/trie/README.md @@ -343,13 +343,13 @@ The following options are available: | Logger | Description | | ------------------------------- | ----------------------------------------------------- | -| `trie` | minimal info logging for all trie methods | +| `trie:#` | minimal info logging for all trie methods | | `trie:put` | a trie put operation has occured | | `trie:get` | a trie get operation has occured | | `trie:del` | a trie del operation has occured | | `trie:find_path` | a node is being searched for | | `trie:find_path:branch_node` | a branch node has been found during a node search | -| `trie:find_path"extension_node` | an extension node has been found during a node search | +| `trie:find_path:extension_node` | an extension node has been found during a node search | | `trie:lookup_node` | node lookup operations | | `trie:lookup_node:raw_node` | node lookup operations that have hit a raw node | | `trie:lookup_node:by_hash` | node lookup operations that have hit a node hash |