diff --git a/Source/ProofOfConcept/Services/TeslaAuthenticatorService.cs b/Source/ProofOfConcept/Services/TeslaAuthenticatorService.cs index 3ef0c0e..5aec711 100644 --- a/Source/ProofOfConcept/Services/TeslaAuthenticatorService.cs +++ b/Source/ProofOfConcept/Services/TeslaAuthenticatorService.cs @@ -201,7 +201,7 @@ public class TeslaAuthenticatorService : ITeslaAuthenticatorService HttpResponseMessage response = await httpClient.PostAsJsonAsync($"{euBaseURL}/api/1/partner_accounts", postBody, cancellationToken); bool success = response.IsSuccessStatusCode; - logger.LogInformation("Application registration result: {Success}", success ? "Success" : "Failed"); + logger.LogInformation("Application response code: {Success}", success ? "Success" : "Failed"); //Load response from server string json = await response.Content.ReadAsStringAsync(cancellationToken); diff --git a/Source/ProofOfConcept/appsettings.Development.json b/Source/ProofOfConcept/appsettings.Development.json index 0c208ae..198ba2e 100644 --- a/Source/ProofOfConcept/appsettings.Development.json +++ b/Source/ProofOfConcept/appsettings.Development.json @@ -1,8 +1,9 @@ { "Logging": { "LogLevel": { - "Default": "Information", - "Microsoft.AspNetCore": "Warning" + "Default": "Trace", + "Microsoft.AspNetCore": "Warning", + "System.Net.Http.HttpClient": "Warning" } } }