We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
--nolldb
1 parent 18d7597 commit 9233ad0Copy full SHA for 9233ad0
src/ios-deploy/ios-deploy.m
@@ -658,7 +658,16 @@ void mount_developer_image(AMDeviceRef device) {
658
659
on_error(@"Unable to mount developer disk image. (%x)", result);
660
}
661
-
+
662
+ CFStringRef symbols_path = copy_device_support_path(device, CFSTR("Symbols"));
663
+ if (symbols_path != NULL)
664
+ {
665
+ NSLogOut(@"Symbol Path: %@", symbols_path);
666
+ NSLogJSON(@{@"Event": @"MountDeveloperImage",
667
+ @"SymbolsPath": (__bridge NSString *)symbols_path
668
+ }); CFRelease(symbols_path);
669
+ }
670
671
CFRelease(image_path);
672
CFRelease(options);
673
0 commit comments