2
我的應用程序意外崩潰了,我沒聽清楚是什麼任何異常......我已經註冊的處理程序:xamarin.mac應用程序崩潰報告
static void Main (string [] args)
{
NSApplication.Init();
NSApplication.Main (args);
AppDomain.CurrentDomain.UnhandledException += HandleUnhandledException;
}
static void HandleUnhandledException (object sender, UnhandledExceptionEventArgs e)
{
//Log the exception...
FileHelper.CreateLogFile ("app crash", e.ExceptionObject.ToString());
}
但它不叫。
而且,我看不到裏面的任何報告:
〜/圖書館/日誌/ DiagnosticReports
有沒有辦法看到我的應用程序的崩潰報告?