Skip to content

Commit

Permalink
optimize logging
Browse files Browse the repository at this point in the history
  • Loading branch information
tinohager committed Jan 2, 2024
1 parent 541eb1c commit 975474b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ public async Task<ActionResult<AuthenticationResponseDto>> AuthenticateAsync(
};

var authenticationStatus = await this._userAuthenticationService.ValidateCredentialsAsync(authenticationRequest, cancellationToken);
this._logger.LogInformation($"{nameof(AuthenticateAsync)} - EmailAddress:{request.EmailAddress} {authenticationStatus}");
this._logger.LogInformation($"{nameof(AuthenticateAsync)} - EmailAddress:{request.EmailAddress} AuthenticationStatus:{authenticationStatus}");

switch (authenticationStatus)
{
Expand Down

0 comments on commit 975474b

Please sign in to comment.