diff --git a/VRCAuthProxy/Program.cs b/VRCAuthProxy/Program.cs index c09fe1d..73dfb41 100644 --- a/VRCAuthProxy/Program.cs +++ b/VRCAuthProxy/Program.cs @@ -74,6 +74,8 @@ async Task LogInAllAccounts() var curUserResp = await httpClient.GetAsync("/api/1/auth/user"); if (!curUserResp.IsSuccessStatusCode) { + Console.WriteLine($"Unable to use cached cookies for {account.username}. Getting new ones..."); + string encodedUsername = HttpUtility.UrlEncode(account.username); string encodedPassword = HttpUtility.UrlEncode(account.password); @@ -116,6 +118,10 @@ async Task LogInAllAccounts() curUserResp = await httpClient.GetAsync("/api/1/auth/user"); } + else + { + Console.WriteLine($"Using cached cookies for {account.username}"); + } var curUser = await curUserResp.Content.ReadFromJsonAsync(); Console.WriteLine($"Logged in as {curUser?.displayName}");