mirror of https://github.com/nodejs/node.git
doc: add documentation for process.traceProcessWarnings
resolves #53514
This commit is contained in:
parent
2e5fc8aa1a
commit
d647636a2d
|
@ -3827,6 +3827,29 @@ documentation for the [`'warning'` event][process_warning] and the
|
|||
[`emitWarning()` method][process_emit_warning] for more information about this
|
||||
flag's behavior.
|
||||
|
||||
## `process.traceProcessWarnings`
|
||||
|
||||
<!-- YAML
|
||||
added: v6.10.0
|
||||
-->
|
||||
|
||||
* {boolean}
|
||||
|
||||
The `process.traceProcessWarnings` property indicates whether the `--trace-warnings` flag
|
||||
is set on the current Node.js process. This property allows programmatic control over the
|
||||
tracing of warnings, enabling or disabling stack traces for warnings at runtime.
|
||||
|
||||
```js
|
||||
// Enable trace warnings
|
||||
process.traceProcessWarnings = true;
|
||||
|
||||
// Emit a warning with a stack trace
|
||||
process.emitWarning('Warning with stack trace');
|
||||
|
||||
// Disable trace warnings
|
||||
process.traceProcessWarnings = false;
|
||||
```
|
||||
|
||||
## `process.umask()`
|
||||
|
||||
<!-- YAML
|
||||
|
|
Loading…
Reference in New Issue