Changeset 194828 in webkit


Ignore:
Timestamp:
Jan 10, 2016 12:24:26 PM (8 years ago)
Author:
commit-queue@webkit.org
Message:

Web Inspector: Dashboard log message count doesn't include console.time messages
https://bugs.webkit.org/show_bug.cgi?id=151280

Patch by Johan K. Jensen <jj@johanjensen.dk> on 2016-01-10
Reviewed by Brian Burg.

  • UserInterface/Models/DefaultDashboard.js:

(WebInspector.DefaultDashboard.prototype._incrementConsoleMessageType):
Make Info and Debug levels increment the log count.

Location:
trunk/Source/WebInspectorUI
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebInspectorUI/ChangeLog

    r194821 r194828  
     12016-01-10  Johan K. Jensen  <jj@johanjensen.dk>
     2
     3        Web Inspector: Dashboard log message count doesn't include console.time messages
     4        https://bugs.webkit.org/show_bug.cgi?id=151280
     5
     6        Reviewed by Brian Burg.
     7
     8        * UserInterface/Models/DefaultDashboard.js:
     9        (WebInspector.DefaultDashboard.prototype._incrementConsoleMessageType):
     10        Make Info and Debug levels increment the log count.
     11
    1122016-01-09  Dan Bernstein  <mitz@apple.com>
    213
  • trunk/Source/WebInspectorUI/UserInterface/Models/DefaultDashboard.js

    r191486 r194828  
    242242        switch (type) {
    243243        case WebInspector.ConsoleMessage.MessageLevel.Log:
     244        case WebInspector.ConsoleMessage.MessageLevel.Info:
     245        case WebInspector.ConsoleMessage.MessageLevel.Debug:
    244246            this.logs += increment;
    245247            break;
Note: See TracChangeset for help on using the changeset viewer.