Commit 87681be8 authored by skyostil's avatar skyostil Committed by Commit bot

Add Headless Shell to the console logging blacklist

Headless Shell is a command line application so it has a good excuse to
print out console messages.

BUG=546953

Review-Url: https://codereview.chromium.org/2581643004
Cr-Commit-Position: refs/heads/master@{#439456}
parent 34e9bd41
......@@ -1160,7 +1160,8 @@ def _CheckSpamLogging(input_api, output_api):
r"^ui[\\\/]aura[\\\/]bench[\\\/]bench_main\.cc$",
r"^ui[\\\/]ozone[\\\/]platform[\\\/]cast[\\\/]",
r"^storage[\\\/]browser[\\\/]fileapi[\\\/]" +
r"dump_file_system.cc$",))
r"dump_file_system.cc$",
r"^headless[\\\/]app[\\\/]headless_shell\.cc$"))
source_file_filter = lambda x: input_api.FilterSourceFile(
x, white_list=(file_inclusion_pattern,), black_list=black_list)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment