cleanup and sentry integration
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Michele Scandura 2021-09-16 10:30:44 +01:00
parent 98e5f6bc89
commit b671c661a7
21 changed files with 89 additions and 88 deletions

View file

@ -1,7 +1,7 @@
using System;
using System.Threading.Tasks;
using System.Threading.Channels;
using Sentry;
namespace Sledgemapper
{
@ -28,7 +28,7 @@ namespace Sledgemapper
}
catch (Exception ex)
{
//ExceptionlessClient.Default.SubmitException(ex);
SentrySdk.CaptureException(ex);
throw;
}
}