From 7343252d9161a9b68a597451a9ac8556cfc4a84f Mon Sep 17 00:00:00 2001 From: Mikhail Khorkov Date: Tue, 28 Dec 2021 01:01:29 +0700 Subject: [PATCH] Delete Debug info --- lib/App/Racoco/Report/ReporterCoveralls/Transport.rakumod | 4 ---- 1 file changed, 4 deletions(-) diff --git a/lib/App/Racoco/Report/ReporterCoveralls/Transport.rakumod b/lib/App/Racoco/Report/ReporterCoveralls/Transport.rakumod index f2db791..3b5aac1 100644 --- a/lib/App/Racoco/Report/ReporterCoveralls/Transport.rakumod +++ b/lib/App/Racoco/Report/ReporterCoveralls/Transport.rakumod @@ -13,10 +13,6 @@ my class FakePath is IO::Path { } method send(Str:D $obj, :$uri --> Str) { -say 'going to send:'; -say $obj; -say 'to'; -say $uri // $!uri; my $response = send-post(uri => $uri // $!uri, file => FakePath.new($*CWD).set($obj)); my $content = $response.decode;