summaryrefslogtreecommitdiff
path: root/grapher/Program.cs
diff options
context:
space:
mode:
authora1xd <[email protected]>2021-03-11 06:49:05 -0500
committera1xd <[email protected]>2021-03-11 06:49:05 -0500
commit66f1f4c20420fa4abe6721efd4edf17589466dd0 (patch)
tree1d401f7d99570cb0e560944af52167060295bf8b /grapher/Program.cs
parentMerge pull request #71 from a1xd/fix-dev-id (diff)
downloadrawaccel-66f1f4c20420fa4abe6721efd4edf17589466dd0.tar.xz
rawaccel-66f1f4c20420fa4abe6721efd4edf17589466dd0.zip
add handler for unhandled exceptions
Diffstat (limited to 'grapher/Program.cs')
-rw-r--r--grapher/Program.cs13
1 files changed, 11 insertions, 2 deletions
diff --git a/grapher/Program.cs b/grapher/Program.cs
index 485e074..894d1cd 100644
--- a/grapher/Program.cs
+++ b/grapher/Program.cs
@@ -19,11 +19,20 @@ namespace grapher
return;
}
+ AppDomain.CurrentDomain.UnhandledException += GlobalUnhandledExceptionHandler;
+
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new RawAcceleration());
-
- GC.KeepAlive(mutex);
+
+ GC.KeepAlive(mutex);
+ }
+
+ static void GlobalUnhandledExceptionHandler(object sender, UnhandledExceptionEventArgs e)
+ {
+ var ex = (Exception)e.ExceptionObject;
+ System.IO.File.WriteAllText("error.log", ex.ToString());
+ MessageBox.Show(ex.Message, "Error");
}
}
}