Skip to content

Getting a stack trace follow up #14263

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Sep 23, 2020
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
4 changes: 2 additions & 2 deletions contributing/code/stack_trace.rst
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ displayed by default if the exception is not caught. When using Symfony,
such exceptions go through a custom exception handler, which enhances
them in various ways before displaying them according to the current
Server API (CLI or not).
This means a better way to get a stack trace when you do need the
This means a better way to get a stack trace when you do not need the
program to continue is to throw an exception, as follows:
``throw new \Exception();``

Expand Down Expand Up @@ -91,7 +91,7 @@ Several things need to be paid attention to when picking a stack trace
from your development environment through a web browser:

1. Are there several exceptions? If yes, the most interesting one is
often exception 1/n which, is shown _last_ in the example below (it
often exception 1/n which, is shown *last* in the example below (it
is the one marked as exception [1/2]).
2. Under the "Stack Traces" tab, you will find exceptions in plain
text, so that you can easily share them in e.g. bug reports. Make
Expand Down