From b7849298173b668871b33c5d70d5ac2a2d5eb2cf Mon Sep 17 00:00:00 2001 From: dave | d1onys1us <13951458+d1onys1us@users.noreply.github.com> Date: Wed, 22 Mar 2023 16:02:17 -0400 Subject: [PATCH] fix(website): fix run a node guide prover logs --- packages/website/pages/docs/guides/run-a-node.mdx | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/packages/website/pages/docs/guides/run-a-node.mdx b/packages/website/pages/docs/guides/run-a-node.mdx index 437e48e383..9569209b05 100644 --- a/packages/website/pages/docs/guides/run-a-node.mdx +++ b/packages/website/pages/docs/guides/run-a-node.mdx @@ -111,26 +111,26 @@ docker compose pull To view the Docker logs, the following commands can be ran: -**View all logs** +###### View all logs ```sh docker compose logs -f ``` -\*\*View the prover image's logs +###### View the prover image's logs ```sh docker compose logs -f taiko_client_prover ``` -**View the L2 execution engine logs** +###### View the L2 execution engine logs ```sh docker compose logs -f l2_execution_engine ``` -**View the live data streams of your running containers (CPU/MEM USAGE %), and consumption of your machine's resources (add prefix "`docker stats -a`" to display all containers)** - +###### View the live data streams of your running containers +This shows the CPU/MEM USAGE % and consumption of your machine's resources (add prefix "`docker stats -a`" to display all containers) ```sh docker stats ```