logging most communication exceptions

This commit is contained in:
Michele 2020-12-13 22:27:51 +00:00
parent d61d207fb8
commit ef2ddd16bf
6 changed files with 80 additions and 40 deletions

View file

@ -8,8 +8,14 @@ namespace Sledgemapper
[STAThread]
static void Main()
{
ExceptionlessClient.Default.Configuration.ServerUrl="https://exceptionless.michelescandura.com";
ExceptionlessClient.Default.Configuration.ServerUrl = "https://exceptionless.michelescandura.com";
#if DEBUG
ExceptionlessClient.Default.Startup("Qvdn6odZRJyGNnorjayMkiwjVsnAK3rNkFtn9bvL");
#else
ExceptionlessClient.Default.Startup("uprV1LocxAlUPPC9oB4eOlt8jGZ5WypMZKdJCsdL");
#endif
using (var game = new Sledgemapper())
game.Run();
}