Is there a way to check for a closed console console error in Firebug?
1 answer
The Firebug activation model is based on URLs following a policy of the same origin and the data displayed is tied to the specific tab you are looking at, or more precisely to the same document. So when you close the tab, the information is gone.
There are two ways to get information about a request though:
-
Don't close the tab
Just don't close the tab and make a request for another event on your page to debug it.
-
Use browser console
The internal browser console displays all messages and errors that occur on all tabs, even after they are closed. To open this console, click Ctrl+ Shift+ Jor choose Firefox> Developer> Browser Console.
0
source to share