Closed
Bug 1048287
Opened 11 years ago
Closed 4 months ago
Option disable collapsing repeated messages
Categories
(DevTools :: Console, enhancement, P3)
Tracking
(Not tracked)
RESOLVED
DUPLICATE
of bug 1615206
People
(Reporter: vito.detullio, Unassigned)
References
Details
User Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:33.0) Gecko/20100101 Firefox/33.0 (Beta/Release)
Build ID: 20140803004002
Steps to reproduce:
This is a "reply" to https://bugzilla.mozilla.org/show_bug.cgi?id=611795 (as the summary is similar)
I, as James Edwards, find annoying and distracting the collapsing of repeated messages, and I would like to have an option on the toolbox, or at least in the about:config, to disable this feature.
To make an example, if I open the Console, and write
> console.log("hi"); console.log("hi");
Actual results:
< undefined
"hi" 2
Expected results:
< undefined
"hi"
"hi"
Updated•11 years ago
|
Status: UNCONFIRMED → NEW
Ever confirmed: true
OS: Windows 7 → All
Priority: -- → P3
Hardware: x86_64 → All
Summary: Repeated messages in the Web Console should *not* be collapsed into one → Option disable collapsing repeated messages
Need ability see timestamp of each entry, if we could expand the collapsed data and see the time of each individual entry, it would help in many cases.
However ability collapse/expand the log inside the window itself, and having already existing log data be instantly affected (not just for new entries), would be most useful.
This feature used to be in Console²
The ability to disable collapsing is extremely useful in debugging java script code, that you may or may not have written but have to fix. Enable-ing timestamps does not alter this behavior.
Updated•7 years ago
|
Product: Firefox → DevTools
Updated•6 years ago
|
Type: defect → enhancement
Updated•3 years ago
|
Severity: normal → S3
Comment 3•4 months ago
|
||
A setting to disable the grouping was added in Bug 1615206
(In reply to V@no from comment #1)
Need ability see timestamp of each entry, if we could expand the collapsed
data and see the time of each individual entry, it would help in many cases.However ability collapse/expand the log inside the window itself, and having
already existing log data be instantly affected (not just for new entries),
would be most useful.
This should be covered in Bug 704252
You need to log in
before you can comment on or make changes to this bug.
Description
•