Changeset 181649 in webkit
- Timestamp:
- Mar 17, 2015, 8:48:32 AM (11 years ago)
- Location:
- trunk/Source/WebCore
- Files:
-
- 2 edited
-
ChangeLog (modified) (1 diff)
-
loader/FrameLoader.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebCore/ChangeLog
r181643 r181649 1 2015-03-17 Chris Dumez <cdumez@apple.com> 2 3 'pageLoaded' diagnostic logging is too verbose 4 https://bugs.webkit.org/show_bug.cgi?id=142727 5 <rdar://problem/18937048> 6 7 Reviewed by Eric Carlson. 8 9 Make 'pageLoaded' diagnostic logging less verbose: 10 - Log once per main frame instead of once for subframe 11 - Apply sampling 12 13 * loader/FrameLoader.cpp: 14 (WebCore::FrameLoader::checkLoadCompleteForThisFrame): 15 1 16 2015-03-17 Carlos Garcia Campos <cgarcia@igalia.com> 2 17 -
trunk/Source/WebCore/loader/FrameLoader.cpp
r180704 r181649 2270 2270 cache->frameLoadingEventNotification(&m_frame, loadingEvent); 2271 2271 2272 if (page )2273 page->mainFrame().diagnosticLoggingClient().logDiagnosticMessageWithResult(DiagnosticLoggingKeys::pageLoadedKey(), emptyString(), error.isNull() ? DiagnosticLoggingResultPass : DiagnosticLoggingResultFail, ShouldSample:: No);2272 if (page && m_frame.isMainFrame()) 2273 page->mainFrame().diagnosticLoggingClient().logDiagnosticMessageWithResult(DiagnosticLoggingKeys::pageLoadedKey(), emptyString(), error.isNull() ? DiagnosticLoggingResultPass : DiagnosticLoggingResultFail, ShouldSample::Yes); 2274 2274 2275 2275 return;
Note:
See TracChangeset
for help on using the changeset viewer.