It's not totally clear to me what you mean but I assume you are talking about AJAX requests being logged to the *Console* panel. And I also assume that you were automatically switched to the Firefox DevTools <https://developer.mozilla.org/en-US/docs/Tools>, because Firebug does not have Net, CSS, and JS in it's *Console* panel and it doesn't work anymore once multi-process Firefox is enabled. See more about this in the related Mozilla Hacks post <https://hacks.mozilla.org/2016/12/firebug-lives-on-in-firefox-devtools/>.
So, to see the AJAX requests you can either switch to the *Network* panel <https://developer.mozilla.org/en-US/docs/Tools/Network_Monitor> or click the little arrow besides the *Net* button an check *XMLHttpRequests (XHR)* from the popup menu. Within the DevTools Console you may even be able to see debug output logged to the console directly via the *Server* filter <https://developer.mozilla.org/en-US/docs/Tools/Web_Console/Console_messages#Server>. For this to work, you need to add a script to your ColdFusion sources <https://github.com/s992/chromelogger-cf>. I didn't try that out with ColdFusion myself yet, though. For further information regarding the transition to the Firefox DevTools, see the migration guide <https://developer.mozilla.org/en-US/docs/Tools/Migrating_from_Firebug> on MDN. Sebastian On Monday, January 23, 2017 at 1:27:00 PM UTC+1, Robert D. wrote: > > Sorry, brand new to this forum ... been using FF w/ Firebug for 6 months > and am using it to see errors in ColdFusion code that's hidden in CFC's. > > Worked for months when suddenly, one PC after another lost the feature. > > In the Console Tab I had "Errors" and I would see + POST, open it and saw > HTML and saw the bugs. > > Now all I see is a row of Net CSS JS, etc. > > Where did my Console go??? > > > -- You received this message because you are subscribed to the Google Groups "Firebug" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at https://groups.google.com/group/firebug. To view this discussion on the web visit https://groups.google.com/d/msgid/firebug/fb9653ce-2329-496a-992b-79d43e9d0e80%40googlegroups.com. For more options, visit https://groups.google.com/d/optout.
