Skip to content

Commit ba90f15

Browse files
Remove debugging logs
1 parent be7db13 commit ba90f15

3 files changed

Lines changed: 0 additions & 4 deletions

File tree

BlazorWasmOsmOauth/Pages/AuthCompletePage.razor.cs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,8 +65,6 @@ private async Task GetToken()
6565

6666
TokenResponse? tokenResp = await osmClient.GetTokenAsync(Code, config.RedirectUri, config.ClientId, config.ClientSecret);
6767

68-
Console.WriteLine(tokenResp);
69-
7068
if (tokenResp != null)
7169
{
7270
await authenticationStateProvider.SetCurrentUserAsync(tokenResp, CancellationToken.None);

BlazorWasmOsmOauth/Pages/HomePage.razor.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,6 @@ private async Task GetLoggedInUserProfile()
4141
}
4242

4343
UserDetailsResponse? userDetails = await osmClient.GetUserDetailsAsync(token);
44-
Console.WriteLine(userDetails);
4544

4645
if (userDetails != null)
4746
{

BlazorWasmOsmOauth/Program.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,6 @@ public static async Task Main(string[] args)
3737
builder.Services.AddTransient<UnauthorizedDelegatingHandler>();
3838

3939
string thisHost = new Uri(builder.HostEnvironment.BaseAddress).Authority;
40-
Console.WriteLine($"Host: {thisHost}");
4140

4241
AppConfig? config = builder.Configuration.Get<AppConfig>();
4342

0 commit comments

Comments
 (0)