about summary refs log tree commit homepage
diff options
context:
space:
mode:
-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);
 }