Skip to content

Commit 309c21e

Browse files
committed
tweak
1 parent 0698cea commit 309c21e

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Diff for: docs/manage/troubleshoot/troubleshoot.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -164,17 +164,17 @@ To access logs from the commandline, use [`viam machines logs`](/dev/tools/cli/#
164164

165165
### Advanced debugging for Go modules
166166

167-
If you have a Go module that doesn't shut down properly or hangs during operation, you can send a SIGQUIT signal to the process, causing it to dump stack traces of all goroutines to stderr or system logs.
168-
Do this by running the following commands, replacing `<PID>` with your module's process identifier:
167+
If you have a Go module that doesn't shut down properly or hangs during operation, you can get more information by sending a SIGQUIT signal to the process.
168+
Run the following command, replacing `<PID>` with your module's process identifier:
169169

170170
```sh {class="command-line" data-prompt="$"}
171171
kill -3 <PID>
172172
```
173173

174-
The stack trace output shows:
174+
The process will dump a stack trace, visible in the `viam-server` logs, that shows:
175175

176176
- All currently running goroutines and their states
177-
- Exactly where execution is blocked or deadlocked
177+
- Where execution is blocked or deadlocked
178178
- Internal state information that might not appear in regular logs
179179

180180
## Remote shell on the machine

0 commit comments

Comments
 (0)