Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Save call stack from Chrome dev tools

I put a breakpoint and see a call stack in Chrome Dev Tools. Then, I want to change something in the code and see how call stack changes.

I wonder, if it's possible to somehow easily save current call stack as an object or a set of string so that to see the difference between two? It can be done by just making screenshots but seems not the best way, just in case there are no other variants.

Thanks!

like image 329
Sergei Basharov Avatar asked Sep 08 '16 06:09

Sergei Basharov


1 Answers

You can right click inside the call stack and press the 'copy stack trace' and paste it in any text editor.

like image 170
amichai Avatar answered Oct 12 '22 14:10

amichai