[Libreoffice-commits] core.git: bin/lolcat

Tor Lillqvist tml at collabora.com
Wed Oct 22 06:53:07 PDT 2014


 bin/lolcat |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 8b292a29a4dbfef15eb0475b71d33330bb55d3b2
Author: Tor Lillqvist <tml at collabora.com>
Date:   Wed Oct 22 16:52:25 2014 +0300

    Match also "debug" lines (for instance from SAL_DEBUG)
    
    Change-Id: I2981a622205cca2dadfc6cb0007559b8270f3d5b

diff --git a/bin/lolcat b/bin/lolcat
index ecc3065..27bb326 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();
   }


More information about the Libreoffice-commits mailing list