From 668f363ce3e1418629b9abb58ec6f43a9fe05354 Mon Sep 17 00:00:00 2001 From: Justin Baur <19896123+justindbaur@users.noreply.github.com> Date: Mon, 14 Nov 2022 11:41:17 -0500 Subject: [PATCH] Don't log response details when it's null (#2407) --- src/Core/Services/Implementations/BaseIdentityClientService.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Core/Services/Implementations/BaseIdentityClientService.cs b/src/Core/Services/Implementations/BaseIdentityClientService.cs index 2f63a1b7c9..f6d623692d 100644 --- a/src/Core/Services/Implementations/BaseIdentityClientService.cs +++ b/src/Core/Services/Implementations/BaseIdentityClientService.cs @@ -133,7 +133,7 @@ public abstract class BaseIdentityClientService : IDisposable if (response == null) { - _logger.LogError("Empty token response from {identity} for client {clientId} with status {code}-{reason}", IdentityClient.BaseAddress, _identityClientId, response.StatusCode, response.ReasonPhrase); + _logger.LogError("Empty token response from {identity} for client {clientId}", IdentityClient.BaseAddress, _identityClientId); return false; }