diff options
author | Chris Schepman <cschep@gmail.com> | 2020-05-21 04:05:25 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-21 13:05:25 +0200 |
commit | bebb8c029fff56f3a6e653b757583ab5c1d4b11f (patch) | |
tree | 034020248b053baf8f0b9f965959d711ac94bd97 /docs/tools/debugger.md | |
parent | 0f1c66cb6da7b45ff98e6eda060537ea4510a3ea (diff) |
docs: Update debugger.md (#5615)
Diffstat (limited to 'docs/tools/debugger.md')
-rw-r--r-- | docs/tools/debugger.md | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/docs/tools/debugger.md b/docs/tools/debugger.md index 11814c054..e9eccb6f0 100644 --- a/docs/tools/debugger.md +++ b/docs/tools/debugger.md @@ -60,7 +60,12 @@ As soon as we've added the breakpoint Devtools automatically opened up source map file, which allows us step through the actual source code that includes types. -Let's send a request and inspect it in Devtools: +Now that we have our breakpoints set, we can resume the execution of our script +so that we might inspect an incoming request. Hit the Resume script execution +button to do so. You might even need to hit it twice! + +Once our script is running again, let's send a request and inspect it in +Devtools: ``` $ curl http://0.0.0.0:4500/ |