Update ContentDownloader.cs

pull/649/head
Sainan 3 months ago committed by GitHub
parent dbfee52344
commit 0dbdecb538
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -843,7 +843,7 @@ namespace DepotDownloader
catch (Exception e) catch (Exception e)
{ {
cdnPool.ReturnBrokenConnection(connection); cdnPool.ReturnBrokenConnection(connection);
Console.WriteLine("Error downloading manifest for depot {0} {1} ({2}). Retrying.", depot.DepotId, depot.ManifestId, e.Message); Console.WriteLine("Error downloading manifest for depot {0} {1}: {2} Retrying.", depot.DepotId, depot.ManifestId, e.Message);
} }
} while (newManifest == null); } while (newManifest == null);
@ -1267,7 +1267,7 @@ namespace DepotDownloader
catch (Exception e) catch (Exception e)
{ {
cdnPool.ReturnBrokenConnection(connection); cdnPool.ReturnBrokenConnection(connection);
Console.WriteLine("Error downloading chunk {0}: {1}. Retrying.", chunkID, e.Message); Console.WriteLine("Error downloading chunk {0}: {1} Retrying.", chunkID, e.Message);
} }
} while (written == 0); } while (written == 0);

Loading…
Cancel
Save