File tree Expand file tree Collapse file tree 1 file changed +6
-3
lines changed
Crashlytics/Crashlytics/Controllers Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -151,9 +151,12 @@ - (NSUInteger)unsentReportsCount {
151
151
// which should be at the start of the array.
152
152
if (validReports.count > FIRCLSMaxUnsentReports) {
153
153
NSUInteger deletingCount = validReports.count - FIRCLSMaxUnsentReports;
154
- FIRCLSInfoLog (@" Deleting %lu unsent reports over the limit of %lu to prevent disk space from "
155
- @" filling up. To prevent this make sure to call send/deleteUnsentReports." ,
156
- deletingCount, FIRCLSMaxUnsentReports);
154
+ FIRCLSInfoLog (
155
+ @" Automatic data collection is disabled. Deleting %lu unsent reports over the limit of %lu "
156
+ @" to prevent disk space from "
157
+ @" filling up. To take action on these reports, call send/deleteUnsentReports. To turn on "
158
+ @" automatic data collection, call setCrashlyticsCollectionEnabled with true" ,
159
+ deletingCount, FIRCLSMaxUnsentReports);
157
160
}
158
161
159
162
// Not that validReports is sorted, delete any reports at indices > MAX_UNSENT_REPORTS, and
You can’t perform that action at this time.
0 commit comments