diff --git a/docs/Backtracing.rst b/docs/Backtracing.rst index ef24df70c88c5..6da66df9c14ed 100644 --- a/docs/Backtracing.rst +++ b/docs/Backtracing.rst @@ -44,12 +44,13 @@ follows: | Key | Default | Meaning | +=================+=========+==================================================+ | enable | yes* | Set to ``no`` to disable crash catching, or | -| | | ``tty`` to enable only if stdin is a terminal. | +| | | ``tty`` to enable only if stdout is a terminal. | +-----------------+---------+--------------------------------------------------+ | demangle | yes | Set to ``no`` to disable demangling. | +-----------------+---------+--------------------------------------------------+ | interactive | tty | Set to ``no`` to disable interaction, or ``yes`` | -| | | to enable always. | +| | | to enable always, or `tty`` to enable only if | +| | | stdin and stdout are both a terminal. | +-----------------+---------+--------------------------------------------------+ | color | tty | Set to ``yes`` to enable always, or ``no`` to | | | | disable. Uses ANSI escape sequences. | @@ -95,8 +96,8 @@ follows: | format | text | Set to ``json`` to output JSON crash logs rather | | | | than plain text. | +-----------------+---------+--------------------------------------------------+ -| output-to | stdout | Set to ``stderr`` to send the backtrace to the | -| | | standard error instead of standard output. This | +| output-to | stderr | Set to ``stdout`` to send the backtrace to the | +| | | standard output instead of standard error. This | | | | may be useful in some CI systems. | | | | | | | | You may also specify a path; if this points at a | @@ -118,7 +119,8 @@ follows: | | | sometimes useful for testing. | +-----------------+---------+--------------------------------------------------+ -(*) On macOS, this defaults to ``no`` rather than ``yes``. +(*) On macOS 26 and later, this defaults to ``tty`` rather than ``yes``. On + earlier versions, the default is ``no``. Backtrace limits ----------------