1
0
mirror of https://github.com/bitwarden/server.git synced 2025-04-06 05:28:15 -05:00

Fix minor typo in logging (#1444)

This commit is contained in:
Davis Templeton 2021-07-07 22:40:47 -04:00 committed by GitHub
parent 8f0ef49d7f
commit a6128c781a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -121,7 +121,7 @@ namespace Bit.Core.Services
} }
catch (Exception e) catch (Exception e)
{ {
_logger.LogWarning(e, "Failed to send email. Re-retying..."); _logger.LogWarning(e, "Failed to send email. Retrying...");
await SendAsync(request, true); await SendAsync(request, true);
throw e; throw e;
} }