summaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorTor Lillqvist <tml@collabora.com>2014-10-22 16:52:25 +0300
committerTor Lillqvist <tml@collabora.com>2014-10-22 16:52:35 +0300
commit8b292a29a4dbfef15eb0475b71d33330bb55d3b2 (patch)
tree3876ac77fc41cd8e5fbc62a0788d53b3bdd84a09 /bin
parentce59240410e58352917fcda94cab3465f059d11d (diff)
Match also "debug" lines (for instance from SAL_DEBUG)
Change-Id: I2981a622205cca2dadfc6cb0007559b8270f3d5b
Diffstat (limited to 'bin')
-rwxr-xr-xbin/lolcat2
1 files changed, 1 insertions, 1 deletions
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 (<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();
}