I'm currently working on an app using javascript which has a recursive function. I would like to use console.profile in order to inspect it, but I can't find exactly how to get the output of the profile session.
I start my session with the following;:
console.profile("sessionName")
But the following doesn't log anything to console on my machine:
console.profileEnd("sessionName");
The following doesn't seem to catch anything either
var d = console.profileEnd("sessionName");
How should it be done?