Commit 91eb1791 authored by Zhiling Huang's avatar Zhiling Huang Committed by Commit Bot

Make the adb logcat print out all usefull logcat.

Previously, for tags that are unknown, we will include the logcat only
when its priority level is e(error). This condition makes us lose a lot of
usefull logcat, because the condition basically means we do not include
logcat by default. It was a whitelist only.

In this cl, I am removing this condition. Thus for all tags that are
unknown, we will include the logcat no matter what its priority level
is. This way we will make sure that no important logcats are lost, and
will include logcat by default.

In the future, if we find that we have included too many logcats and
want to blacklist a tag, we can simply add <tag>:S into the
LOGCAT_FILTERS to blacklist the logcat with that tag.

Bug: 766743
Change-Id: I970a646a65b06fb66009a90c9a49df122c74d31d
Reviewed-on: https://chromium-review.googlesource.com/680894Reviewed-by: default avatarJohn Budorick <jbudorick@chromium.org>
Commit-Queue: Zhiling Huang <hzl@chromium.org>
Cr-Commit-Position: refs/heads/master@{#504149}
parent a57d5aa6
......@@ -31,7 +31,6 @@ from py_utils import contextlib_ext
LOGCAT_FILTERS = [
'*:e',
'chromium:v',
'cr_*:v',
'DEBUG:I',
......
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