You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
on_error([NSStringstringWithFormat:@"Unable to locate DeviceSupport directory with suffix '%@'. This probably means you don't have Xcode installed, you will need to launch the app manually and logging output will not be shown!", suffix]);
534
+
if (path == NULL) {
535
+
NSString *msg = [NSStringstringWithFormat:@"Unable to locate DeviceSupport directory with suffix '%@'. This probably means you don't have Xcode installed, you will need to launch the app manually and logging output will not be shown!", suffix];
536
+
NSLogJSON(@{
537
+
@"Event": @"DeviceSupportError",
538
+
@"Status": msg,
539
+
});
540
+
on_error(msg);
541
+
}
536
542
537
543
time( &endTime );
538
544
NSLogVerbose(@"DeviceSupport directory '%@' was located. It took %.2f seconds", path, difftime(endTime,startTime));
@@ -642,11 +648,19 @@ mach_error_t install_callback(CFDictionaryRef dict, int arg) {
0 commit comments