Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'doc/api/tracing.md')
-rw-r--r--doc/api/tracing.md8
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/api/tracing.md b/doc/api/tracing.md
index 596f624be54..4a684be4b19 100644
--- a/doc/api/tracing.md
+++ b/doc/api/tracing.md
@@ -36,7 +36,7 @@ The available categories are:
By default the `node`, `node.async_hooks`, and `v8` categories are enabled.
-```txt
+```bash
node --trace-event-categories v8,node,node.async_hooks server.js
```
@@ -45,10 +45,10 @@ flag to enable trace events. This requirement has been removed. However, the
`--trace-events-enabled` flag *may* still be used and will enable the
`node`, `node.async_hooks`, and `v8` trace event categories by default.
-```txt
+```bash
node --trace-events-enabled
-// is equivalent to
+# is equivalent to
node --trace-event-categories v8,node,node.async_hooks
```
@@ -74,7 +74,7 @@ The logging file is by default called `node_trace.${rotation}.log`, where
be specified with `--trace-event-file-pattern` that accepts a template
string that supports `${rotation}` and `${pid}`:
-```txt
+```bash
node --trace-event-categories v8 --trace-event-file-pattern '${pid}-${rotation}.log' server.js
```