Skip to content

Commit 0a7c0a3

Browse files
Fix logging
1 parent 39aec40 commit 0a7c0a3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ public async Task WriteToTargetAsync(Func<Stream, Task> writeToStream, IConfigur
7070
{
7171
var totalMib = (double) totalBytes / 1024 / 1024;
7272

73-
logger.LogInformation("{BlobName}: transferred {TotalMiB:F2} Mib to Azure Blob in {TotalTime} seconds.", settings.BlobName, totalMib, swWrite.Elapsed.Seconds);
73+
logger.LogInformation("{BlobName}: transferred {TotalMiB:F2} Mib to Azure Blob in {TotalTime} seconds.", settings.BlobName, totalMib, swWrite.Elapsed.TotalSeconds);
7474
}
7575
}
7676

0 commit comments

Comments
 (0)