Skip to content

Commit

Permalink
Minor Safety Update
Browse files Browse the repository at this point in the history
  • Loading branch information
polatefekaya committed Jun 8, 2024
1 parent 4768668 commit 05bf8d1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion RosanicSocial.Application/Services/JwtService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ public JwtService(IConfiguration configuration, IJwtHelperService jwtHelperServi
}

public AuthenticationResponse CreateJwtToken(AuthenticationRequest request) {
_logger.LogTrace($"JwtToken Creation is Started for {request.Username}");
_logger.LogTrace($"JwtToken Creation is Started for {request.Username.Replace(Environment.NewLine, "")}");

DateTime tokenExpiration = _jwtHelperService.SetExpiration(JwtServiceData.Expirations.Token);
_logger.LogDebug("Token Expiration is setted");
Expand Down

0 comments on commit 05bf8d1

Please sign in to comment.