improved logging of AggregateException

This commit is contained in:
Philipp Crocoll 2014-01-02 20:32:33 +01:00
parent f78116c6a1
commit bbb32eda26

View File

@ -68,7 +68,7 @@ namespace keepass2android
{
message = innerException.Message;
// Override the message shown with the last (hopefully most recent) inner exception
Kp2aLog.Log("Exception: " + message);
Kp2aLog.Log("Exception: " + innerException);
}
Finish(false, _app.GetResourceString(UiStringKey.ErrorOcurred) + " " + message);
return;