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
6 changes: 3 additions & 3 deletions tutorials/scripting/logging.rst
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ Crash backtraces
When the project crashes, a crash backtrace is printed to the standard error stream. This is what
it can look like in a build with debug symbols:

::
.. code-block:: none

================================================================
handle_crash: Program crashed with signal 4
Expand All @@ -135,7 +135,7 @@ it can look like in a build with debug symbols:

On the other hand, without debug symbols, it will look like this instead:

::
.. code-block:: none

================================================================
handle_crash: Program crashed with signal 4
Expand Down Expand Up @@ -256,7 +256,7 @@ or :ref:`push_warning() <class_@GlobalScope_method_push_warning>` in
as the original message. This message is not available in the custom logger,
which is what prevents infinite recursion from occurring:

::
.. code-block:: none

While attempting to print a message, another message was printed:
...
Expand Down