Changeset 284874 in webkit
- Timestamp:
- Oct 26, 2021, 9:24:04 AM (5 years ago)
- Location:
- trunk/Source/WebKit
- Files:
-
- 2 edited
-
ChangeLog (modified) (1 diff)
-
UIProcess/WebPageProxy.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebKit/ChangeLog
r284864 r284874 1 2021-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 1 11 2021-10-26 Per Arne <pvollan@apple.com> 2 12 -
trunk/Source/WebKit/UIProcess/WebPageProxy.cpp
r284628 r284874 4801 4801 { 4802 4802 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()); 4804 4804 4805 4805 PageClientProtector protector(pageClient());
Note:
See TracChangeset
for help on using the changeset viewer.