about summary refs log tree commit homepage
path: root/lib/PublicInbox/Git.pm
diff options
context:
space:
mode:
authorEric Wong <e@80x24.org>2023-01-05 01:44:59 +0000
committerEric Wong <e@80x24.org>2023-01-05 04:48:15 +0000
commit7ea6eb5a69ae3e58d49eb1b04bd015d7eb38695f (patch)
tree961e43745d0c0bf9abb60c54a934abe0e3832c73 /lib/PublicInbox/Git.pm
parenta30dd4aa9455f4166c6bc18e043fccd645b4231c (diff)
downloadpublic-inbox-7ea6eb5a69ae3e58d49eb1b04bd015d7eb38695f.tar.gz
I used these messages during development to verify Alpine was
triggering the intended codepaths.  They're no longer necessary
and just noise at this point.

Reported-by: Chris Brannon <chris@the-brannons.com>
Fixes: d4ba8828ab23 ("git: fix asynchronous batching for deep pipelines")
Diffstat (limited to 'lib/PublicInbox/Git.pm')
-rw-r--r--lib/PublicInbox/Git.pm3
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/PublicInbox/Git.pm b/lib/PublicInbox/Git.pm
index 86b80a4e..c7f82ba2 100644
--- a/lib/PublicInbox/Git.pm
+++ b/lib/PublicInbox/Git.pm
@@ -315,11 +315,10 @@ sub write_all {
                 my $w = syswrite($out, $buf);
                 if (defined $w) {
                         return if $w == length($buf);
-                        warn "chop: $w";
                         substr($buf, 0, $w, ''); # sv_chop
                 } elsif ($! != EAGAIN) {
                         $self->fail("write: $!");
-                } else { warn "E: $!" }
+                }
                 $read_step->($self, $inflight);
         } while (1);
 }