From 3d1764889f6e10eccaa356d8cd1137a59e7eb417 Mon Sep 17 00:00:00 2001 From: Nicholas Hastings Date: Mon, 20 Feb 2017 07:45:01 -0500 Subject: [PATCH] Fix unused var warning. --- DepotDownloader/ContentDownloader.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/DepotDownloader/ContentDownloader.cs b/DepotDownloader/ContentDownloader.cs index 5dcc3f86..4663a694 100644 --- a/DepotDownloader/ContentDownloader.cs +++ b/DepotDownloader/ContentDownloader.cs @@ -282,7 +282,7 @@ namespace DepotDownloader } catch (Exception e) { - Console.WriteLine("Failed to decrypt branch {0}", branch); + Console.WriteLine("Failed to decrypt branch {0}: {1}", branch, e.Message); return INVALID_MANIFEST_ID; }