diff --git a/.github/workflows/tests.yaml b/.github/workflows/tests.yaml index f796e4ba..1daf494a 100644 --- a/.github/workflows/tests.yaml +++ b/.github/workflows/tests.yaml @@ -7,7 +7,7 @@ on: branches: [ main ] env: - VERSION: 3.0.0.0-beta3 + VERSION: 3.0.0.0-beta4 jobs: build: diff --git a/Wabbajack.Networking.Steam/Client.cs b/Wabbajack.Networking.Steam/Client.cs index 19011990..1c140c01 100644 --- a/Wabbajack.Networking.Steam/Client.cs +++ b/Wabbajack.Networking.Steam/Client.cs @@ -116,9 +116,9 @@ public class Client : IDisposable { if (obj.Result != EResult.OK) { - _licenseRequest.TrySetException(new SteamException("While getting licenses", obj.Result, EResult.Invalid)); + _licenseRequest.TrySetException(new SteamException("While getting game information", obj.Result, EResult.Invalid)); } - _logger.LogInformation("Got {LicenseCount} licenses from Steam", obj.LicenseList.Count); + _logger.LogInformation("Steam has provided game information"); Licenses = obj.LicenseList.ToArray(); _licenseRequest.TrySetResult(); } @@ -222,7 +222,7 @@ public class Client : IDisposable Task.Run(async () => { var state = (await _token.Get())!; - _logger.LogInformation("Connected to Steam, logging in as {User}", state.User); + _logger.LogInformation("Connected to Steam, logging in"); byte[]? sentryHash = null;