Changeset 199899 in webkit


Ignore:
Timestamp:
Apr 22, 2016 1:28:44 PM (8 years ago)
Author:
timothy@apple.com
Message:

Change an assert to a warn based on post review feedback.

https://bugs.webkit.org/show_bug.cgi?id=156919
rdar://problem/25857118

Rubber-stamped by Joseph Pecoraro.

  • UserInterface/Controllers/DebuggerManager.js:

(WebInspector.DebuggerManager.prototype.debuggerDidPause):

Location:
trunk/Source/WebInspectorUI
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebInspectorUI/ChangeLog

    r199897 r199899  
     12016-04-22  Timothy Hatcher  <timothy@apple.com>
     2
     3        Change an assert to a warn based on post review feedback.
     4
     5        https://bugs.webkit.org/show_bug.cgi?id=156919
     6        rdar://problem/25857118
     7
     8        Rubber-stamped by Joseph Pecoraro.
     9
     10        * UserInterface/Controllers/DebuggerManager.js:
     11        (WebInspector.DebuggerManager.prototype.debuggerDidPause):
     12
    1132016-04-22  Timothy Hatcher  <timothy@apple.com>
    214
  • trunk/Source/WebInspectorUI/UserInterface/Controllers/DebuggerManager.js

    r199897 r199899  
    547547
    548548        if (!this._activeCallFrame) {
    549             console.assert("We should always have one call frame. This could indicate we are hitting an exception or debugger statement in an internal injected script.");
     549            console.warn("We should always have one call frame. This could indicate we are hitting an exception or debugger statement in an internal injected script.");
    550550            this._didResumeInternal();
    551551            return;
Note: See TracChangeset for help on using the changeset viewer.