Top "Console.log" questions

a debugging tool for JavaScript.

How to unhide filtered messages in Chrome developer Tools 60

In the developer view in Chrome, under the console tab, it's showing this message 9 items hidden by filters I clicked …

google-chrome filter hidden console.log developer-tools
Capture browser console logs with capybara

I need to capture the console logs (category: info) of a browser using Ruby & Capybara. Until now I have …

javascript ruby selenium capybara console.log
Why would a return be undefined but console.log return an int?

So I have the following function: var multiplyT = function(a, b, acc) { if (b == 0) { console.log("BASE CASE: ", acc); return …

javascript recursion console.log
remove index from console.table()

I am viewing an array of data in the console. console.table(myArray) always has the index as the first …

javascript console.log
Is there a Node.js console.log length limit?

Is there a limit the length of console.log output in Node.js? The following prints numbers up to 56462, then …

node.js console.log
%j specifier in console.log excludes some properties

I was recently trying to load the bson (binary JSON) module in node.js. The API docs were unclear, so …

javascript node.js properties console.log
Format console.log with color and variables surrounding non-formatted text

The issue I wrote a function to demonstrate how to format Chrome developer console console.log() messages in a variety …

javascript css google-chrome firebug console.log
Is it possible to flush the console (make it print immediately)?

I use Firefox + Firebug for some Javascripting. The text I'm trying to log with console.log does not immediately appear …

javascript firefox firebug console.log