Rework messages

This commit is contained in:
Timothy Baldridge 2022-01-10 14:14:37 -07:00
parent 38cd2b7f58
commit 8a6d720e54
2 changed files with 4 additions and 4 deletions

View File

@ -7,7 +7,7 @@ on:
branches: [ main ]
env:
VERSION: 3.0.0.0-beta3
VERSION: 3.0.0.0-beta4
jobs:
build:

View File

@ -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;