mirror of
https://github.com/bitwarden/server.git
synced 2025-07-18 08:00:59 -05:00
Don't log response details when it's null (#2407)
This commit is contained in:
@ -133,7 +133,7 @@ public abstract class BaseIdentityClientService : IDisposable
|
|||||||
|
|
||||||
if (response == null)
|
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;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user