> Anything i can do to get the console logs back?
Does Firebug 2.0 alpha 2 work for you?
https://blog.getfirebug.com/2014/04/04/firebug-2-0-alpha-2/
If you create a new Firefox profile, does it help?
https://getfirebug.com/wiki/index.php/Install_Firebug_into_a_clean_profile
(to avoid collision with another extension)
Since i've switched to Firefox 29 Firebug is not showing any console logs anymore.
<!doctype html>
<html>
<head><title>Test</title>
<meta charset="iso-8859-1">
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js"></script>
<script type="text/javascript"><!--
/**/console.log("jQuery/%s is ready", jQuery().jquery);
jQuery(function($){
console.log("Document ready");
});
//--></script>
</head>
<body>
</body>
</html>
I'm seeing the same problem.Browser specs:Installed addons:
How to reproduce bug:
1. go to https://getfirebug.com/tests/head/console/api/log.html
2. open firebug and click "Execute Test"
3. everything works fine now
4. now refresh page with firebug open
5. click "Execute Test"
6. message won't appear in firebug console...
7. ... but open firefox native tools - there's our message
Ok i disabled all Add-ons except for FireBug and restarted FireFox. opened FireBug and i started to get console.log messages again, YAY! Closed FireBug and opened the native console to FireFox and i stopped getting console.log messages...... Basically the reverse problem.I will go back and enable the add-ons and try and pin point the one that caused the FireBug issue.
about:config the variable extensions.sdk.console.logLevel to all see https://developer.mozilla.org/en-US/Add-ons/SDK/Tools/console#Logging%20LevelsFor me, an active GreseMonkey script is the cause of this issue, when I disable GreaseMonkey, console.log works fine.
// store the Firebug console object
var firebugConsole = console;
jQuery(document).ready(function() {
// and restore it on domready
window.console = firebugConsole;
});
I am having the same problem on fire fox 29.0.1, 1.12.8. However I can tell you for me it is only on a callback. So if I put in a console.log it appears. But as soon as I put it in a callback for a jQuery $.each or any type of AJAX, I don't get any console.log, but still get alert.
Other extensions like 1Password removed might work around the problem, but they have not changed and I need them too. Might move to using internal Firefox dev tools, can't work without a console.log.
Excuse me, now I am using Firefox 33 & Firebug 2.0.4 this bug comes again... is it cause by same issue? or there is another issue cause this bug? thanks for your help!!