File tree Expand file tree Collapse file tree 3 files changed +11
-12
lines changed Expand file tree Collapse file tree 3 files changed +11
-12
lines changed Original file line number Diff line number Diff line change 1
1
# PLCrashReporter Change Log
2
2
3
- ## Version 1.10.1(Under development)
3
+ ## Version 1.10.1 (Under development)
4
4
5
5
* ** [ Improvement] ** Specified minimum cocoapods version in podspec to 1.10.0
6
+ * ** [ Improvement] ** Mark ` PLCrashReporter.crashReportPath ` method as public.
6
7
7
8
___
8
9
Original file line number Diff line number Diff line change @@ -142,6 +142,11 @@ typedef struct PLCrashReporterCallbacks {
142
142
143
143
- (void ) setCrashCallbacks : (PLCrashReporterCallbacks *) callbacks ;
144
144
145
+ /* *
146
+ * Return the path to live crash report (which may not yet, or ever, exist).
147
+ */
148
+ - (NSString *) crashReportPath ;
149
+
145
150
/* *
146
151
* Custom data to save in the crash report.
147
152
*/
Original file line number Diff line number Diff line change @@ -391,7 +391,6 @@ - (plcrash_async_symbol_strategy_t) mapToAsyncSymbolicationStrategy: (PLCrashRep
391
391
- (BOOL ) populateCrashReportDirectoryAndReturnError : (NSError **) outError ;
392
392
- (NSString *) crashReportDirectory ;
393
393
- (NSString *) queuedCrashReportDirectory ;
394
- - (NSString *) crashReportPath ;
395
394
396
395
@end
397
396
@@ -844,6 +843,10 @@ - (void) setCustomData: (NSData *) customData {
844
843
plcrash_log_writer_set_custom_data (&signal_handler_context.writer , customData);
845
844
}
846
845
846
+ - (NSString *) crashReportPath {
847
+ return [[self crashReportDirectory ] stringByAppendingPathComponent: PLCRASH_LIVE_CRASHREPORT];
848
+ }
849
+
847
850
@end
848
851
849
852
/* *
@@ -1061,14 +1064,4 @@ - (NSString *) queuedCrashReportDirectory {
1061
1064
return [[self crashReportDirectory ] stringByAppendingPathComponent: PLCRASH_QUEUED_DIR];
1062
1065
}
1063
1066
1064
-
1065
- /* *
1066
- * Return the path to live crash report (which may not yet, or ever, exist).
1067
- */
1068
- - (NSString *) crashReportPath {
1069
- return [[self crashReportDirectory ] stringByAppendingPathComponent: PLCRASH_LIVE_CRASHREPORT];
1070
- }
1071
-
1072
-
1073
-
1074
1067
@end
You can’t perform that action at this time.
0 commit comments