Skip to content

Commit

Permalink
a
Browse files Browse the repository at this point in the history
  • Loading branch information
tpill90 committed Jan 27, 2024
1 parent 2e82189 commit 026f3f6
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion SteamPrefill/Handlers/DownloadHandler.cs
Original file line number Diff line number Diff line change
Expand Up @@ -101,9 +101,10 @@ public async Task<ConcurrentBag<QueuedRequest>> AttemptDownloadAsync(ProgressCon
}
catch (Exception e)
{
failedRequests.Add(request);
//TODO format this nicer
_ansiConsole.LogMarkupLine(Red($"Request /depot/{request.DepotId}/chunk/{request.ChunkId} failed : {e.GetType()}"));
failedRequests.Add(request);
FileLogger.LogExceptionNoStackTrace($"Request /depot/{request.DepotId}/chunk/{request.ChunkId} failed", e);
}
progressTask.Increment(request.CompressedLength);
});
Expand Down

0 comments on commit 026f3f6

Please sign in to comment.