Skip to content

Commit

Permalink
added two versions how to show redirected logs
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexeyALeonov authored May 9, 2024
1 parent 83f7174 commit 9cb1ba9
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions app/node/faq/check-logs/page.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,15 +21,28 @@ docker logs --tail 20 storagenode
```

{% tabs %} {% tab label="Docker for Windows" %}
For CLI Docker install on Windows, if you would like to copy your logs to a file you can follow this link [](docId:EeyBBKEeuNK5oqkB4EyU0) or you can execute the following command in PowerShell, inserting your actual path to your log file instead of “pathtologfile”

```powershell
Get-Content "pathtologfile" -Tail 20 -Wait
```

{% /tab %}

{% tab label="Docker for Linux/macOS" %}

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 your terminal:

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

{% /tab %}
{% /tabs %}
{% /tab %}

{% tab label="GUI Windows Install" %}
Expand Down

0 comments on commit 9cb1ba9

Please sign in to comment.