1
0
mirror of https://github.com/bitwarden/server synced 2025-12-15 15:53:59 +00:00

log httpclient send exceptions

This commit is contained in:
Kyle Spearrin
2019-07-05 14:20:16 -04:00
parent f9a43288a9
commit bc2621f45f

View File

@@ -299,8 +299,9 @@ namespace Bit.Icons.Services
{
return await _httpClient.SendAsync(message);
}
catch
catch(Exception e)
{
_logger.LogError(e, "SendAsync() failed.");
return null;
}
}