]> Sergey Matveev's repositories - public-inbox.git/blobdiff - lib/PublicInbox/Git.pm
git: write_all: remove leftover debug messages
[public-inbox.git] / lib / PublicInbox / Git.pm
index 86b80a4edb877152f566c00a7b804952516e907b..c7f82ba2f4eaba45a301a936ddd2d32b2722fa6c 100644 (file)
@@ -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);
 }