Skip to content

Commit 401008d

Browse files
f
1 parent 397ba7f commit 401008d

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

Extensions/AzureBlob/Cosmos.DataTransfer.AzureBlobStorage/AzureBlobDataSink.cs

+1-2
Original file line numberDiff line numberDiff line change
@@ -70,9 +70,8 @@ public async Task WriteToTargetAsync(Func<Stream, Task> writeToStream, IConfigur
7070
if (totalBytes != 0)
7171
{
7272
var totalMib = totalBytes / 1024 / 1024;
73-
var rate = totalMib / (sw.ElapsedMilliseconds / 1000);
7473

75-
logger.LogInformation("{BlobName}: transferred {TotalMiB} Mib to Azure Blob in {TotalTime} minutes ({Rate} MiB/s).", settings.BlobName, totalMib, sw.ElapsedMilliseconds / 1000 / 60, rate);
74+
logger.LogInformation("{BlobName}: transferred {TotalMiB} Mib to Azure Blob in {TotalTime} seconds.", settings.BlobName, totalMib, sw.ElapsedMilliseconds / 1000);
7675
}
7776
}
7877

0 commit comments

Comments
 (0)