From d49166a8f701fa940394e1e7cc6e6a835a8c7abe Mon Sep 17 00:00:00 2001 From: John Struse Date: Sun, 13 Aug 2017 15:25:09 -0400 Subject: [PATCH] Add manifest ID to console output --- DepotDownloader/ContentDownloader.cs | 2 ++ 1 file changed, 2 insertions(+) mode change 100644 => 100755 DepotDownloader/ContentDownloader.cs diff --git a/DepotDownloader/ContentDownloader.cs b/DepotDownloader/ContentDownloader.cs old mode 100644 new mode 100755 index a08526c1..53ab636f --- a/DepotDownloader/ContentDownloader.cs +++ b/DepotDownloader/ContentDownloader.cs @@ -635,6 +635,8 @@ namespace DepotDownloader newProtoManifest = new ProtoManifest( depotManifest, depot.manifestId ); newProtoManifest.SaveToFile( newManifestFileName ); + Console.WriteLine( "Successfully downloaded manifest {0} for depot {1}", depot.manifestId, depot.id ); + Console.WriteLine( " Done!" ); } }