Вопрос

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?

Это было полезно?

Решение

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.

Лицензировано под: CC-BY-SA с атрибуция
Не связан с StackOverflow
scroll top