Create MFPerformanceErrorObject for error logging.

This commit is contained in:
Kyle Matthew Hedden 2023-02-28 22:08:40 -05:00
parent a74aa6ef2d
commit 52883a534b
2 changed files with 3 additions and 2 deletions

View File

@ -40,5 +40,6 @@ typedef NS_ENUM(NSInteger, ErrorCode) {
ErrorCodeSSL,//23
ErrorCodeNoViewControllerToPresentOn,//24
ErrorCodeNoErrorPageSent, //25
ErrorCodeFontNotFound //26
ErrorCodeFontNotFound, //26
ErrorCodePoorPerformance //27
};

View File

@ -26,7 +26,7 @@
@property (nullable, strong, nonatomic) NSString *requestId;
@property (nullable, strong, nonatomic) NSString *requestUrl;
@property (nonatomic, assign) NSInteger httpStatusCode;
@property (nonatomic, strong) NSDictionary *serverResponseInfo;
@property (nullable, strong, nonatomic) NSDictionary *serverResponseInfo;
// For the crash log.
@property (nullable, strong, nonatomic) NSDictionary *crashLog;