sanjeev
sanjeev

Reputation: 4631

How to increase call stack in chrome ajax call?

enter image description here

Is there any way that can I can increase the number of function call, that are shown in the above image?

Right now I am debugging the code and I want to find the origin of the click function, but it is only showing me 9 function call at max and I want to see more.

Upvotes: 0

Views: 208

Answers (1)

Ritwick Dey
Ritwick Dey

Reputation: 19022

Try this

 google-chrome --js-flags="--stack-trace-limit 10000"

or

Error.stackTraceLimit = Infinity

Upvotes: 1

Related Questions