Kaydet (Commit) 8b292a29 authored tarafından Tor Lillqvist's avatar Tor Lillqvist

Match also "debug" lines (for instance from SAL_DEBUG)

Change-Id: I2981a622205cca2dadfc6cb0007559b8270f3d5b
üst ce592404
...@@ -14,7 +14,7 @@ my $pid = ''; ...@@ -14,7 +14,7 @@ my $pid = '';
while (<LOGCAT>) { while (<LOGCAT>) {
if (m!^I/ActivityManager\( *\d+\): Start proc $id for activity .*: pid=(\d+)!) { if (m!^I/ActivityManager\( *\d+\): Start proc $id for activity .*: pid=(\d+)!) {
$pid = $1; $pid = $1;
} elsif (m!^[EIW]/[^(]+\( *$pid\)!) { } elsif (m!^[EIWD]/[^(]+\( *$pid\)!) {
print $_; print $_;
STDOUT->flush(); STDOUT->flush();
} }
......
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