javascript - Is it possible to flush the console (make it print immediately)? -


i use firefox + firebug javascripting. text i'm trying log console.log not appear in firebug's console. seems piles in buffer somewhere, , gets flushed console in chunks. have function makes few log calls. first line, - nothing. do, however, see whole bunch of lines when refresh page.

can flush console log manually?

the short answer no. there no flush. clear console

console.clear(); 

but don't think that's want. code. if can see it, can revise answer better feedback.

if want see available methods under console, execute in command line:

for(var in console) {     console.log(i); } 

or have @ wiki page of console api.


Comments

Popular posts from this blog

php - SPIP: From Tag directly to an article -

jquery - isAjaxRequest always return false -

ruby on rails - In a controller spec, how to find a specific tag in the generated view? -