-
-
Notifications
You must be signed in to change notification settings - Fork 9.6k
Logged exceptions not showing up in the exception tab #24877
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
Comments
Not sure if feature request or bug BTW, because I think I have seen that work before. |
We should indeed preserve depth for the previous exception here IMO (as we do for the trace). Populating the Exception panel based on log messages containing an exception won't work. the Exception panel can only contain one exception (with its chain). It is meant to display the uncatched exception reaching the |
Ok so I'm probably confused then :P |
@stof So the options are making room for multiple exceptions in the Exception panel or a create new panel? |
@SenseException why creating a new panel ? the option is improving the dumping of the logged exception in the log panel, so that the previous exception can get expanded too, not only the trace. Making room for multiple exceptions in the exception panel does not make any sense: there is no way to have multiple exceptions in it without re-purposing the panel entirely. |
@stof I wasn't sure to understand where you wanted to go with your last comment and I understood those two options I previously mentioned. |
#23465 which is the root of the issue might cut things a bit too much indeed. We're loosing some degree of information in different panels since. :/ |
@ogizanagi can we do something about this ? |
Hey, thanks for your report! |
Friendly ping? Should this still be open? I will close if I don't hear anything. |
Hey, I didn't hear anything so I'm going to close it. Feel free to comment if this is still relevant, I can always reopen! |
I'm having poor DX with an exception logged here:
symfony/src/Symfony/Component/Security/Guard/Firewall/GuardAuthenticationListener.php
Lines 134 to 136 in 2fb303b
All I get in the profile is a log that looks like this:
I debugged a bit further and all the interesting part is buried in
previous
, which I can't access here.Potential solutions:
The text was updated successfully, but these errors were encountered: