1
0
mirror of https://github.com/bitwarden/server.git synced 2025-07-01 16:12:49 -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

View File

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