We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent eed07a0 commit 025a2b3Copy full SHA for 025a2b3
1 file changed
src/Microsoft.DotNet.Arcade.Sdk/src/DownloadFile.cs
@@ -183,6 +183,7 @@ private async Tasks.Task<bool> DownloadWithRetriesAsync(HttpClient httpClient, s
183
}
184
185
Log.LogMessage($"Retrying download of '{uri}' to '{DestinationPath}' due to failure: '{e.Message}' ({attempt}/{Retries})");
186
+ Log.LogErrorFromException(e, true, true, null);
187
188
await Tasks.Task.Delay(RetryDelayMilliseconds).ConfigureAwait(false);
189
continue;
0 commit comments