Skip to content
This repository has been archived by the owner on Jun 25, 2022. It is now read-only.

Commit

Permalink
refactor(back-end): Change the error message in mail service
Browse files Browse the repository at this point in the history
  • Loading branch information
CarlosPavajeau committed Feb 4, 2021
1 parent 00c7446 commit 8324710
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Infrastructure/Services/MailService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ public async Task SendEmailAsync(string email, string subject, string message, b
}
catch (Exception e)
{
_logger.LogError(e.Message);
_logger.LogError("Error trying to send an email. Exception message: {Message}", e.Message);
}
}

Expand Down

0 comments on commit 8324710

Please sign in to comment.