0

How to make firefox display the entire stack trace in its console log.

Venu
  • 1,513
  • 3
  • 19
  • 37

2 Answers2

0

The Firefox DevTools do show the file and the line and column numbers within the file where the error occurred.

Error message in Firefox DevTools console

On errors you can also expand the stack trace right within the console by clicking the little arrow besides the error message.

See the related documentation on MDN for more info about that.

Firebug also shows this information in its console:

Error message in Firebug console

In there you can also display the stack trace by clicking the + icon besides the message.

Note: Firebug is discontinued in favor of the Firefox DevTools.

Sebastian Zartner
  • 18,808
  • 10
  • 90
  • 132
0

I was able to see the error, warning, etc on my console. Not sure how they were unchecked, but when I recheck the options, everything seems working.

enter image description here

Venu
  • 1,513
  • 3
  • 19
  • 37