⚠ Archived content — this site is no longer maintained.   Current WebKit documentation is at docs.webkit.org.

Changeset 284874 in webkit


Ignore:
Timestamp:
Oct 26, 2021, 9:24:04 AM (5 years ago)
Author:
Chris Dumez
Message:

Improve didFailProvisionalLoadForFrame logging to indicate if it is for the main frame
https://bugs.webkit.org/show_bug.cgi?id=232273

Reviewed by Darin Adler.

  • UIProcess/WebPageProxy.cpp:

(WebKit::WebPageProxy::didFailProvisionalLoadForFrameShared):

Location:
trunk/Source/WebKit
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit/ChangeLog

    r284864 r284874  
     12021-10-26  Chris Dumez  <cdumez@apple.com>
     2
     3        Improve didFailProvisionalLoadForFrame logging to indicate if it is for the main frame
     4        https://bugs.webkit.org/show_bug.cgi?id=232273
     5
     6        Reviewed by Darin Adler.
     7
     8        * UIProcess/WebPageProxy.cpp:
     9        (WebKit::WebPageProxy::didFailProvisionalLoadForFrameShared):
     10
    1112021-10-26  Per Arne  <pvollan@apple.com>
    212
  • trunk/Source/WebKit/UIProcess/WebPageProxy.cpp

    r284628 r284874  
    48014801{
    48024802    LOG(Loading, "(Loading) WebPageProxy %" PRIu64 " in web process pid %i didFailProvisionalLoadForFrame to provisionalURL %s", m_identifier.toUInt64(), process->processIdentifier(), provisionalURL.utf8().data());
    4803     WEBPAGEPROXY_RELEASE_LOG_ERROR(Process, "didFailProvisionalLoadForFrame: frameID=%" PRIu64 ", domain=%s, code=%d", frame.frameID().toUInt64(), error.domain().utf8().data(), error.errorCode());
     4803    WEBPAGEPROXY_RELEASE_LOG_ERROR(Process, "didFailProvisionalLoadForFrame: frameID=%" PRIu64 ", domain=%s, code=%d, isMainFrame=%d", frame.frameID().toUInt64(), error.domain().utf8().data(), error.errorCode(), frame.isMainFrame());
    48044804
    48054805    PageClientProtector protector(pageClient());
Note: See TracChangeset for help on using the changeset viewer.