From 72b4e2a47bcfd6c5b7108b6ecfcd691e022587f6 Mon Sep 17 00:00:00 2001 From: Iluha <92525749+Iluhadesu@users.noreply.github.com> Date: Mon, 4 Jul 2022 20:47:28 +0200 Subject: [PATCH] More hooks --- DepotDownloader/Steam3Session.cs | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/DepotDownloader/Steam3Session.cs b/DepotDownloader/Steam3Session.cs index 682dbb79..c33eabc3 100644 --- a/DepotDownloader/Steam3Session.cs +++ b/DepotDownloader/Steam3Session.cs @@ -542,11 +542,11 @@ namespace DepotDownloader { if (bConnecting) { - Console.WriteLine("[Error]|[ConnectionError]|Connection to Steam failed. Trying again"); + Console.WriteLine("[Warning]|[ConnectionError]|Connection to Steam failed. Trying again"); } else { - Console.WriteLine("[Error]|[ConnectionLost]|Lost connection to Steam. Reconnecting"); + Console.WriteLine("[Warning]|[ConnectionLost]|Lost connection to Steam. Reconnecting"); } Thread.Sleep(1000 * ++connectionBackoff); @@ -625,7 +625,7 @@ namespace DepotDownloader if (loggedOn.Result == EResult.ServiceUnavailable) { - Console.WriteLine("[Error]|[{0}]|Unable to login to Steam3", loggedOn.Result); + Console.WriteLine("[Error]|[ConnectionError]|Unable to login to Steam3"); Abort(false); return; @@ -633,7 +633,7 @@ namespace DepotDownloader if (loggedOn.Result != EResult.OK) { - Console.WriteLine("[Error]|[{0}]|Unable to login to Steam3", loggedOn.Result); + Console.WriteLine("[Error]|[ConnectionError]|Unable to login to Steam3"); Abort(); return; @@ -661,7 +661,7 @@ namespace DepotDownloader { if (licenseList.Result != EResult.OK) { - Console.WriteLine("[Error]|[{0}]|Unable to get license list ", licenseList.Result); + Console.WriteLine("[Error]|[LicenceError]|Unable to get license list "); Abort(); return;