MVMCoreErrorObject

This commit is contained in:
Suresh, Kamlesh 2021-01-21 13:38:56 -05:00
parent aa3390e501
commit c3fb8aee96

View File

@ -610,7 +610,8 @@ NSString * const KeyActionTypeOpen = @"openPage";
if (error) {
stopLoadingOverlay();
completionHandler(actionInformation);
[MVMCoreLoggingHandler addErrorToLog:error];
MVMCoreErrorObject* errorObject = [MVMCoreErrorObject createErrorObjectForNSError:error location:@"MVMCoreActionHandler"];
[MVMCoreLoggingHandler addErrorToLog:errorObject];
}
}