diff --git a/docs/installation.md b/docs/installation.md index ff4a5bd..a4fbfa9 100644 --- a/docs/installation.md +++ b/docs/installation.md @@ -79,6 +79,7 @@ If not, it can be installed with the following commands: ```sh curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh source ~/.cargo/env +# Restart your terminal (or run `source ~/.cargo/env` again) so the `cargo` command is available. ``` With Rust installed, install the dependencies for your operating system: diff --git a/docs/running-an-arc-node.md b/docs/running-an-arc-node.md index 0a20af6..6f45e7d 100644 --- a/docs/running-an-arc-node.md +++ b/docs/running-an-arc-node.md @@ -198,6 +198,15 @@ The `result` field represents the next block height, in hexadecimal It should increase over time. If it remains `0x0`, check the logs of the consensus layer for errors. +For real-time logs, run these commands in separate terminals: + +```sh +# Consensus layer logs (most useful for sync issues) +sudo journalctl -u arc-consensus -f + +# Execution layer logs +sudo journalctl -u arc-execution -f + > Notice that this command queries the execution layer's HTTP server offering > a local JSON-RPC API. > If the address and port of the HTTP endpoint are configured differently than