Changeset 247310 in webkit


Ignore:
Timestamp:
Jul 10, 2019 11:00:13 AM (5 years ago)
Author:
Ryan Haddad
Message:

[MacOS] Filter VPA info logged to stdout
https://bugs.webkit.org/show_bug.cgi?id=199673

Reviewed by Eric Carlson.

  • Scripts/webkitpy/port/mac.py:

(MacPort.logging_patterns_to_strip):

Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r247307 r247310  
     12019-07-10  Ryan Haddad  <ryanhaddad@apple.com>
     2
     3        [MacOS] Filter VPA info logged to stdout
     4        https://bugs.webkit.org/show_bug.cgi?id=199673
     5
     6        Reviewed by Eric Carlson.
     7
     8        * Scripts/webkitpy/port/mac.py:
     9        (MacPort.logging_patterns_to_strip):
     10
    1112019-07-10  Ryan Haddad  <ryanhaddad@apple.com>
    212
  • trunk/Tools/Scripts/webkitpy/port/mac.py

    r247226 r247310  
    278278        logging_patterns.append((re.compile('GVA warning: getFreeDRMInstanceCount, maxDRMInstanceCount: .*\n'), ''))
    279279
     280        # FIXME: Remove this after <rdar://problem/52897406> is fixed.
     281        logging_patterns.append((re.compile('VPA info:.*\n'), ''))
     282
    280283        return logging_patterns
    281284
Note: See TracChangeset for help on using the changeset viewer.