DEV Community

Discussion on: Debug Like a Champion

Collapse
 
jonathanhartsf profile image
Jonathan Hart • Edited

I think one missing section here is how to best analyze the stack when an eng hits a runtime error. A lot of times the error will be emitted in a different part of the stack where the actual bug exists, and being able to traverse the stacktrace is a valuable skill.

Otherwise a great look into visual debugging!

Collapse
 
pedes profile image
Andres Cespedes Morales

Sure Jonathan, thanks for your advice, I will post the second part of it, on how to read and analyze the stacktrace and dumpstack and also on how to solve issues using a Java profiler.

Thanks.