Sergei Basharov
Sergei Basharov

Reputation: 53890

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!

Upvotes: 9

Views: 3051

Answers (1)

amichai
amichai

Reputation: 728

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

Upvotes: 10

Related Questions