Reputation: 2261
Here is the code I want to print to console:
for(var j=0; j<300; j++){
console.log(j);
}
I want to display all j
in console. But for some reason, only 100-299 gets printed out.
I am using Firefox built in Web Developer tools.
Upvotes: 12
Views: 4103
Reputation: 207537
In about:config you can up the limits
Firebug:
extensions.firebug.console.logLimit
Built in Web Developer tools console:
devtools.hud.loglimit.console
Upvotes: 21