From 155196ec7ffbef61b0f0164bc1ef0e7369e21b78 Mon Sep 17 00:00:00 2001 From: Ryan Kistner Date: Tue, 18 Nov 2014 14:31:45 -0700 Subject: [PATCH] Added a missing parameter --- DepotDownloader/ContentDownloader.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/DepotDownloader/ContentDownloader.cs b/DepotDownloader/ContentDownloader.cs index 2146d273..f8146935 100644 --- a/DepotDownloader/ContentDownloader.cs +++ b/DepotDownloader/ContentDownloader.cs @@ -833,7 +833,7 @@ namespace DepotDownloader var response = e.Response as HttpWebResponse; if (response.StatusCode == HttpStatusCode.Unauthorized || response.StatusCode == HttpStatusCode.Forbidden) { - Console.WriteLine("Encountered 401 for chunk {0}. Aborting."); + Console.WriteLine("Encountered 401 for chunk {0}. Aborting.", chunkID); cts.Cancel(); break; }