summaryrefslogtreecommitdiff
path: root/doc/api/process.md
diff options
context:
space:
mode:
authorcjihrig <cjihrig@gmail.com>2019-02-18 14:01:12 -0500
committercjihrig <cjihrig@gmail.com>2019-02-20 15:15:57 -0500
commit823c988b482e609978869820758b7182f32e9de5 (patch)
tree40f0445410b16afeec0e2e273e4890bb82e5e90e /doc/api/process.md
parent11a8a940d7bf03dc108082bdd456668210b949c1 (diff)
downloadandroid-node-v8-823c988b482e609978869820758b7182f32e9de5.tar.gz
android-node-v8-823c988b482e609978869820758b7182f32e9de5.tar.bz2
android-node-v8-823c988b482e609978869820758b7182f32e9de5.zip
report: remove verbose setting
This commit removes the --diagnostic-report-verbose CLI option and all associated logic. The flag is currently only used in one place, and only reflects the settings at startup. Additionally, Node tends to use the NODE_DEBUG mechanism for adding verbose output. PR-URL: https://github.com/nodejs/node/pull/26195 Reviewed-By: Richard Lau <riclau@uk.ibm.com> Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
Diffstat (limited to 'doc/api/process.md')
-rw-r--r--doc/api/process.md5
1 files changed, 0 insertions, 5 deletions
diff --git a/doc/api/process.md b/doc/api/process.md
index b87223b9c4..1a009bce54 100644
--- a/doc/api/process.md
+++ b/doc/api/process.md
@@ -1703,8 +1703,6 @@ added: v11.8.0
* `filename` {string} Name of the file where the report is written.
* `path` {string} Directory where the report is written.
**Default:** the current working directory of the Node.js process.
- * `verbose` {boolean} Flag that controls additional verbose information on
- report generation. **Default:** `false`.
Configures the diagnostic reporting behavior. Upon invocation, the runtime
is reconfigured to generate reports based on `options`. Several usage examples
@@ -1721,9 +1719,6 @@ process.report.setOptions({ filename: 'foo.json', path: '/home' });
// to `stdout` and `stderr`. Usage of these will result in report being written
// to the associated standard streams. URLs are not supported.
process.report.setOptions({ filename: 'stdout' });
-
-// Enable verbose option on report generation.
-process.report.setOptions({ verbose: true });
```
Signal based report generation is not supported on Windows.