Revert "Print line if we have not seen any pids created yet"

This reverts commit cd01ccf720.
This commit is contained in:
Adam Hupp
2014-09-29 21:12:51 -07:00
parent a21ee6e688
commit 092ffc1869
+1 -3
View File
@@ -177,7 +177,6 @@ if sys.stdin.isatty():
else: else:
adb = FakeStdinProcess() adb = FakeStdinProcess()
pids = set() pids = set()
seen_pids = False
last_tag = None last_tag = None
app_pid = None app_pid = None
@@ -236,7 +235,6 @@ while adb.poll() is None:
if match_packages(line_package): if match_packages(line_package):
pids.add(line_pid) pids.add(line_pid)
seen_pids = True
app_pid = line_pid app_pid = line_pid
@@ -266,7 +264,7 @@ while adb.poll() is None:
message = message.lstrip() message = message.lstrip()
owner = app_pid owner = app_pid
if seen_pids and owner not in pids: if owner not in pids:
continue continue
if level in LOG_LEVELS_MAP and LOG_LEVELS_MAP[level] < min_level: if level in LOG_LEVELS_MAP and LOG_LEVELS_MAP[level] < min_level:
continue continue