I am trying a simple console.log function in firefox
console.log("Hello World !");
you can try: http://jsfiddle.net/EkZjK/
You can also try the full code in a stand-alone HTML file:
<html> <head> <meta content="text/html;charset=utf-8" http-equiv="Content-Type"> <script type="text/javascript"> console.log("Hello World !"); </script> </head> </html>
I get console logs in chrome.
But in firefox I do not see the logs.
I tried firebug console and CTRL + SHIFT + J
Both do not display a log message in firefox.
PS, I restarted FF, restarted Windows, tried on another computer and deleted the FF profile and created another one, reinstalled FF. But the problem still exists.
How to solve this?
firefox logging
Ashraf Bashir Mar 26 '13 at 9:25 2013-03-26 09:25
source share