Capture local variables for both caught and uncaught exceptions
When false, only uncaught exceptions will have local variables
When true, both caught and uncaught exceptions will have local variables.
Defaults to true.
Capturing local variables for all exceptions can be expensive since the debugger pauses for every throw to collect
local variables.
To reduce the likelihood of this feature impacting app performance or throughput, this feature is rate-limited.
Once the rate limit is reached, local variables will only be captured for uncaught exceptions until a timeout has
been reached.
OptionalmaxExceptionsPerSecond
maxExceptionsPerSecond?:number
Maximum number of exceptions to capture local variables for per second before rate limiting is triggered.
Capture local variables for both caught and uncaught exceptions
Defaults to
true
.Capturing local variables for all exceptions can be expensive since the debugger pauses for every throw to collect local variables.
To reduce the likelihood of this feature impacting app performance or throughput, this feature is rate-limited. Once the rate limit is reached, local variables will only be captured for uncaught exceptions until a timeout has been reached.