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 = '';
while (<LOGCAT>) {
if (m!^I/ActivityManager\( *\d+\): Start proc $id for activity .*: pid=(\d+)!) {
$pid = $1;
} elsif (m!^[EIW]/[^(]+\( *$pid\)!) {
} elsif (m!^[EIWD]/[^(]+\( *$pid\)!) {
print $_;
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