Remove stale debugging lines
authoragriffis <agriffis@gentoo.org>
Mon, 7 Mar 2005 23:50:08 +0000 (23:50 -0000)
committeragriffis <agriffis@gentoo.org>
Mon, 7 Mar 2005 23:50:08 +0000 (23:50 -0000)
svn path=/; revision=187

trunk/src/echangelog/echangelog

index 159817a4ea67609d4ab78862db96d83e5ccd60ff..3e30323a006d85d6ddeedd2ea9c3b11a80c006b7 100644 (file)
@@ -53,7 +53,6 @@ if (-f 'ChangeLog') {
 # Figure out what has changed around here
 open C, 'cvs -fn up 2>&1 |' or die "Can't run cvs -fn up: $!\n";
 while (<C>) {
-    #print STDERR "cvs: $_";
     /ChangeLog/ and next;
     /^\? (\S+)/ and push @unknown, $1;
     /^([ARMC]) (\S+)/ or next;
@@ -161,7 +160,6 @@ if (@ebuilds) {
     open C, "cvs -f diff -U0 @ebuilds 2>&1 |" or die "Can't run cvs diff: $!\n";
     $_ = <C>;
     while (defined $_) {
-        #print STDERR "cvs: $_";
         if (/^cvs diff: (([^\/]*?)\.ebuild) was removed/) { 
             push @files, $1;
         }