Back to warning fixing!

This commit is contained in:
cake
2025-11-18 00:38:43 +01:00
parent bfaa583808
commit a68e9e996b
2 changed files with 43 additions and 20 deletions

View File

@@ -294,8 +294,9 @@ public partial class FileDownloadManager : DisposableMediatorSubscriberBase
bytesRead = await readTask.ConfigureAwait(false);
}
catch (OperationCanceledException)
catch (OperationCanceledException ex)
{
Logger.LogWarning(ex, "Request got cancelled : {url}", requestUrl);
throw;
}