Reputation: 6197
console.log messages used to go to Firebug, but not they dont appear here but in "browser console". How to put them back?
Upvotes: 0
Views: 181
Reputation: 2062
In 2 steps:
Why: Firebug is not maintained anymore, it often becomes obsolete with new FF update. Tools already available in Firefox (F12) are inglobating it. See:
https://getfirebug.com/ <- the red message on main page
Upvotes: 1
Reputation: 7831
As you can see in the home page of Firebug http://getfirebug.com/
The Firebug extension isn't being developed or maintained any longer.
To have your logs displayed you have 2 choices:
Use Firebug on an older version of Firefox (in my case it's working with Firefox 45).
Deactivate Firebug by tapping about:addons
in the URL.
Then tape F12
to use Firefox DevTools https://developer.mozilla.org/en-US/docs/Tools
Upvotes: 1