From 8b292a29a4dbfef15eb0475b71d33330bb55d3b2 Mon Sep 17 00:00:00 2001 From: Tor Lillqvist Date: Wed, 22 Oct 2014 16:52:25 +0300 Subject: Match also "debug" lines (for instance from SAL_DEBUG) Change-Id: I2981a622205cca2dadfc6cb0007559b8270f3d5b --- bin/lolcat | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'bin/lolcat') diff --git a/bin/lolcat b/bin/lolcat index ecc30655b5c2..27bb32624e08 100755 --- a/bin/lolcat +++ b/bin/lolcat @@ -14,7 +14,7 @@ my $pid = ''; while () { 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(); } -- cgit