1
0
mirror of https://github.com/bitwarden/server.git synced 2025-02-05 00:01:30 +01: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;
}
}