Question

I'm trying to debug a faulty Ajax call from a PHP web app. To do that I'm using Firebug to track every time the script is called.

In the console I see the GET calls to the script, but to accumulate this many can take some minutes and is not practical to time it by hand.

enter image description here

My question is : How can I log the time each GET call occurs natively from Firebug?

Was it helpful?

Solution

You may want to use console.timeStamp() within your script. This prints a time stamp along with an arbitrary string to the console and creates a marker line within the Net panel.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top