start implementing Xamarin.Insights based error reports

This commit is contained in:
Philipp Crocoll
2016-01-11 20:58:42 +01:00
parent 870e34d02e
commit 8fc98df53b
38 changed files with 228 additions and 53 deletions

View File

@@ -164,7 +164,7 @@ namespace keepass2android
bSuccess = false;
}
*/
Kp2aLog.Log("Error while saving: " + e.ToString());
Kp2aLog.LogUnexpectedError(e);
Finish(false, e.Message);
return;
}
@@ -188,6 +188,7 @@ namespace keepass2android
}
catch (Exception e)
{
Kp2aLog.LogUnexpectedError(e);
Kp2aLog.Log("Error in worker thread of SaveDb: " + e);
Finish(false, e.Message);
}
@@ -197,6 +198,7 @@ namespace keepass2android
}
catch (Exception e)
{
Kp2aLog.LogUnexpectedError(e);
Kp2aLog.Log("Error starting worker thread of SaveDb: "+e);
Finish(false, e.Message);
}