Display error received sending Google Cloud a message

This commit is contained in:
Paul Schneider 2019-04-23 16:00:49 +01:00
commit e90aa46747

View file

@ -58,7 +58,9 @@ namespace Yavsc.Services
} }
} }
catch (Exception ex) { catch (Exception ex) {
throw new Exception ("Quelque chose s'est mal passé à l'envoi",ex); _logger.LogError(ex.Message);
throw new Exception ("Quelque chose s'est mal passé à l'envoi",ex);
} }
} }