Display error received sending Google Cloud a message

This commit is contained in:
2019-04-23 16:00:49 +01:00
parent c14f749866
commit d96587d95b

View File

@ -58,7 +58,9 @@ namespace Yavsc.Services
}
}
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);
}
}