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

Change-Id: I2981a622205cca2dadfc6cb0007559b8270f3d5b
This commit is contained in:
Tor Lillqvist 2014-10-22 16:52:25 +03:00
parent ce59240410
commit 8b292a29a4

View file

@ -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();
}