Reputation: 266998
For some reason firebug is not showing that litte red 'X' icon in the bottom right corner anymore in my localhost development.
Is there a setting that I might have somehow changed?
I purposely make an error in my .js file and I get nothing!
Upvotes: 2
Views: 749
Reputation: 22442
Is the Firebug icon yellow or grey? If it is grey, then Firebug is turned off (or all the panels are disabled).
Upvotes: 0
Reputation: 819
Many asynchronous callbacks "swallow" errors. That is, any error can occur in the callback and it won't show in Firebug or any just-in-time debugger I know of. However, with "Break on All Errors" on, Firebug will stop. Look for that in the Script tab options.
Are you using TrimPath? It can also "swallow" errors.
Upvotes: 1
Reputation: 14327
In Firebug, click the dropdown next to the "Console" tab, and check "Enable console for Local Files".
Upvotes: 1
Reputation: 11697
Do you have anything like this in your javascript?
window.onerror = function(){
return true;
};
This will suppress any normal behavior of errors.
Upvotes: 0
Reputation: 19151
To be honest, I have no idea. But I have run into firebug issues before and reinstalling takes about 2 minutes and usually fixes the problem
Upvotes: 0