Closed
Bug 1079058
Opened 11 years ago
Closed 11 years ago
console panel in inspector only shows the last 200 lines of logs
Categories
(DevTools :: Console, defect)
Tracking
(Not tracked)
RESOLVED
INVALID
People
(Reporter: schavery, Unassigned)
Details
Attachments
(1 file)
|
8.41 KB,
image/png
|
Details |
User Agent: Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:32.0) Gecko/20100101 Firefox/32.0
Build ID: 20140924083558
Steps to reproduce:
Open console and put in some code that will log lots of lines:
for(var i = 0; i < 210; i++) {
console.log("this is line: " + i);
}
Actual results:
The console will show the logs starting from 10 through 209
Expected results:
The console should show all lines of output
// The number of lines that are displayed in the console output by default, for
// each category. The user can change this number by adjusting the hidden
// "devtools.hud.loglimit.{network,cssparser,exception,console}" preferences.
const DEFAULT_LOG_LIMIT = 200;
in https://github.com/mozilla/gecko-dev/blob/master/browser/devtools/webconsole/webconsole.js
You can change the devtools.hud.loglimit.console to 500 even more to solve this problem.
Status: UNCONFIRMED → RESOLVED
Closed: 11 years ago
Resolution: --- → INVALID
Updated•7 years ago
|
Product: Firefox → DevTools
You need to log in
before you can comment on or make changes to this bug.
Description
•