Skip to content

Commit

Permalink
added two versions how to show redirected logs (#373)
Browse files Browse the repository at this point in the history
* added an alternative version how to show redirected logs in Linux and macOS using terminal
  • Loading branch information
AlexeyALeonov authored May 9, 2024
1 parent 83f7174 commit c57c559
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion app/node/faq/check-logs/page.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,12 @@ Get-Content "pathtologfile" -Tail 20 -Wait
```

For CLI Linux and MacOS install, if you have redirected your logs to a file, please use your preferred editor to view the contents of the log file.
For CLI Linux and macOS install, if you have redirected your logs to a file, please use your preferred editor to view the contents of the log file, or in your terminal (replace the path `/path/to/the/log/file.log` with the correct path):

```linux
cat /path/to/the/log/file.log
```

{% /tab %}

Expand Down

0 comments on commit c57c559

Please sign in to comment.