From 71d85c2f0ed42d0004c73c5f7ad001f008ccd083 Mon Sep 17 00:00:00 2001 From: dave | d1onys1us <13951458+d1onys1us@users.noreply.github.com> Date: Wed, 22 Mar 2023 16:30:24 -0400 Subject: [PATCH] fix(website): fix run a node guide prover logs (#13421) --- 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 80bd400b5a..e20ee9e095 100644 --- a/packages/website/pages/docs/guides/run-a-node.mdx +++ b/packages/website/pages/docs/guides/run-a-node.mdx @@ -112,26 +112,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 ```