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

Changeset 241632 in webkit


Ignore:
Timestamp:
Feb 15, 2019, 4:36:06 PM (8 years ago)
Author:
Chris Dumez
Message:

Sample domainsVisited diagnostic logging
https://bugs.webkit.org/show_bug.cgi?id=194657

Reviewed by Ryosuke Niwa.

Sample domainsVisited diagnostic logging, we are getting a lot of data from
this key and this is hurting our other keys.

  • page/Page.cpp:

(WebCore::Page::logNavigation):

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r241626 r241632  
     12019-02-15  Chris Dumez  <cdumez@apple.com>
     2
     3        Sample domainsVisited diagnostic logging
     4        https://bugs.webkit.org/show_bug.cgi?id=194657
     5
     6        Reviewed by Ryosuke Niwa.
     7
     8        Sample domainsVisited diagnostic logging, we are getting a lot of data from
     9        this key and this is hurting our other keys.
     10
     11        * page/Page.cpp:
     12        (WebCore::Page::logNavigation):
     13
    1142019-02-15  Ryosuke Niwa  <rniwa@webkit.org>
    215
  • trunk/Source/WebCore/page/Page.cpp

    r241548 r241632  
    23702370
    23712371    if (!navigation.domain.isEmpty())
    2372         diagnosticLoggingClient().logDiagnosticMessageWithEnhancedPrivacy(DiagnosticLoggingKeys::domainVisitedKey(), navigation.domain, ShouldSample::No);
     2372        diagnosticLoggingClient().logDiagnosticMessageWithEnhancedPrivacy(DiagnosticLoggingKeys::domainVisitedKey(), navigation.domain, ShouldSample::Yes);
    23732373}
    23742374
Note: See TracChangeset for help on using the changeset viewer.