Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 7 additions & 5 deletions docs/Backtracing.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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. |
Expand Down Expand Up @@ -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 |
Expand All @@ -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
----------------
Expand Down