We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5ad58ce commit 9d83d5aCopy full SHA for 9d83d5a
src/CoreApi/FileSystemApi.cs
@@ -80,7 +80,6 @@ internal FileSystemApi(IpfsClient ipfs)
80
// If a progress report.
81
if (r.ContainsKey("Bytes"))
82
{
83
- Console.WriteLine("progress");
84
options.Progress?.Report(new TransferProgress
85
86
Name = (string)r["Name"],
test/CoreApi/FileSystemApiTest.cs
@@ -318,7 +318,6 @@ public async Task AddFile_WithProgress()
318
319
Progress = new Progress<TransferProgress>(t =>
320
321
- Console.WriteLine("got it");
322
bytesTransferred += t.Bytes;
323
})
324
};
0 commit comments