Reputation: 1290
I'm working on a large and old project that run tons to JavaScript and sometimes when solving a bug its a bit hard to know which function has executed.
Is there a way to get a list of the last executed functions in Chrome Developer Tools?
Upvotes: 1
Views: 520
Reputation: 2321
You have two options for resolving this issue:
You should use Profiler in Chrome Develper Tools:
Step 1:
Step 2
So you can see list functions which was executed while profiling.
Upvotes: 1