Hidden Stack Traces
See original GitHub issueIt appears that throwing an error from a gulp task will log the error message, and the task in question, but not the stack trace.
Is there any reason not to make logging stack traces the default behaviour? For the sake of minimising surprises I think it would be worth considering. It’s something that I know others have struggled with Grunt in the past as well: stacks are hidden behind a flag (--stack
), and a few coworkers went a couple of weeks before discovering it was even an option, leaving some errors a complete mystery.
Issue Analytics
- State:
- Created 10 years ago
- Comments:24 (22 by maintainers)
Top Results From Across the Web
Hiding Stack Trace Messages - Jaspersoft Community
By default, JasperReports Server displays stack traces in certain error messages. Stack traces reveal some information about the application, and security ...
Read more >How to hide the current method from exception stack trace in ...
P.S.: If all you want is to hide a method in the Call Stack window during a debugging session, simply apply the [DebuggerHidden]...
Read more >Hide / Remove Stack Trace information - Microsoft Q&A
Stack trace is automatically inserted in Exception body to help you trace when caused the exception. If you don't want to show it,...
Read more >Hiding Sensitive Arguments in PHP Stack Traces - Chris White
Sometimes we need to pass around sensitive and secret variable values in ... Obviously we need to remove the secret value from stack...
Read more >Crashlytics hidden stack trace · Issue #10902 - GitHub
Symbol files have been uploaded successfully and Crashlytics does not state that any symbol files are missing; We are using bitcode; We have...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
In case anyone stumbles across this and has trouble deciphering how it works, this is what works for me to get stack traces from all errors:
Thanks for the clarification @contra. Good to know.