Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: don't recommend verbose logs for nodes #2812

Merged
merged 1 commit into from
Jul 11, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
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
3 changes: 2 additions & 1 deletion docs/guide/src/dev/devnet-quickstart.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,10 @@ This will write configs to `~/.penumbra/testnet_data/`.

## Running `pd`

You'll probably want to set `RUST_LOG`. Here's one suggestion:
You'll probably want to set `RUST_LOG`. Here's one suggestion that's quite verbose:

```shell
# Optional. Expect about 20GB/week of log data for pd with settings below.
export RUST_LOG="info,pd=debug,penumbra=debug,jmt=debug"
```

Expand Down
7 changes: 1 addition & 6 deletions docs/guide/src/pd/join-testnet.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,12 +50,7 @@ the section above on resetting node state.
### Running `pd` and `tendermint`

Next, run `pd` with the `--home` parameter pointed at the correct part of the
testnet data directory. It's useful to set the `RUST_LOG` environment variable
to get information about what it's doing:

```shell
export RUST_LOG="info,pd=debug,penumbra=debug,jmt=debug" # or some other logging level
```
testnet data directory.

```shell
cargo run --bin pd --release -- start --home ~/.penumbra/testnet_data/node0/pd
Expand Down