Last login: Fri May 10 14:02:39 on ttys000 | |
FusionDriveiMac:~ admin$ /usr/sbin/diskutil cs list -plist | |
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
<plist version="1.0"> | |
<dict> | |
<key>CoreStorageLogicalVolumeGroups</key> | |
<array> | |
<dict> | |
<key>CoreStorageLogicalVolumeFamilies</key> | |
<array/> | |
<key>CoreStoragePhysicalVolumes</key> | |
<array> | |
<dict> | |
<key>CoreStorageRole</key> | |
<string>PV</string> | |
<key>CoreStorageUUID</key> | |
<string>351321C6-7908-41AB-AAE1-F987205A5031</string> | |
</dict> | |
<dict> | |
<key>CoreStorageRole</key> | |
<string>PV</string> | |
<key>CoreStorageUUID</key> | |
<string>9E5B53C2-5D6D-415F-917E-D7266FD783F5</string> | |
</dict> | |
</array> | |
<key>CoreStorageRole</key> | |
<string>LVG</string> | |
<key>CoreStorageUUID</key> | |
<string>5CD21A86-1071-40F7-A90D-B97D443BBFB2</string> | |
</dict> | |
</array> | |
</dict> | |
</plist> | |
FusionDriveiMac:~ admin$ diskutil list | |
/dev/disk0 (internal, physical): | |
#: TYPE NAME SIZE IDENTIFIER | |
0: GUID_partition_scheme *121.3 GB disk0 | |
1: EFI EFI 209.7 MB disk0s1 | |
2: Apple_CoreStorage FusionDrive 121.0 GB disk0s2 | |
3: Apple_Boot Boot OS X 134.2 MB disk0s3 | |
/dev/disk1 (internal, physical): | |
#: TYPE NAME SIZE IDENTIFIER | |
0: GUID_partition_scheme *1.0 TB disk1 | |
1: EFI EFI 209.7 MB disk1s1 | |
2: Apple_CoreStorage FusionDrive 999.9 GB disk1s2 | |
3: Apple_Boot Boot OS X 134.2 MB disk1s3 | |
/dev/disk3 (disk image): | |
#: TYPE NAME SIZE IDENTIFIER | |
0: GUID_partition_scheme +68.7 GB disk3 | |
1: EFI EFI 209.7 MB disk3s1 | |
2: Apple_HFS 10.12.6 Tools 68.4 GB disk3s2 | |
/dev/disk4 (disk image): | |
#: TYPE NAME SIZE IDENTIFIER | |
0: untitled +1.1 GB disk4 | |
/dev/disk5 (disk image): | |
#: TYPE NAME SIZE IDENTIFIER | |
0: GUID_partition_scheme +5.6 GB disk5 | |
1: EFI EFI 209.7 MB disk5s1 | |
2: Apple_HFS Install macOS Sierra 5.2 GB disk5s2 | |
/dev/disk6 (disk image): | |
#: TYPE NAME SIZE IDENTIFIER | |
0: GUID_partition_scheme +5.8 GB disk6 | |
1: EFI EFI 209.7 MB disk6s1 | |
2: Apple_HFS Install macOS High S... 5.4 GB disk6s2 | |
/dev/disk7 (disk image): | |
#: TYPE NAME SIZE IDENTIFIER | |
0: GUID_partition_scheme +6.6 GB disk7 | |
1: EFI EFI 209.7 MB disk7s1 | |
2: Apple_HFS Install macOS Mojave 6.2 GB disk7s2 | |
FusionDriveiMac:~ admin$ diskutil cs list | |
CoreStorage logical volume groups (1 found) | |
| | |
+-- Logical Volume Group 5CD21A86-1071-40F7-A90D-B97D443BBFB2 | |
========================================================= | |
Name: FusionDrive | |
Status: Online | |
Size: 1120849764352 B (1.1 TB) | |
Free Space: 1114994507776 B (1.1 TB) | |
| | |
+-< Physical Volume 351321C6-7908-41AB-AAE1-F987205A5031 | |
| ---------------------------------------------------- | |
| Index: 0 | |
| Disk: disk0s2 | |
| Status: Online | |
| Size: 120988852224 B (121.0 GB) | |
| | |
+-< Physical Volume 9E5B53C2-5D6D-415F-917E-D7266FD783F5 | |
---------------------------------------------------- | |
Index: 1 | |
Disk: disk1s2 | |
Status: Online | |
Size: 999860912128 B (999.9 GB) | |
FusionDriveiMac:~ admin$ diskutil cs remove 5CD21A86-1071-40F7-A90D-B97D443BBFB2 | |
diskutil: did not recognize coreStorage verb "remove"; type "diskutil coreStorage" for a list | |
FusionDriveiMac:~ admin$ diskutil cs | |
Usage: diskutil [quiet] coreStorage|CS <verb> <options> | |
where <verb> is as follows: | |
list (Show status of CoreStorage volumes) | |
info[rmation] (Get CoreStorage information by UUID or disk) | |
convert (Convert a volume into a CoreStorage volume) | |
revert (Revert a CoreStorage volume to its native type) | |
create (Create a new CoreStorage logical volume group) | |
delete (Delete a CoreStorage logical volume group) | |
rename (Rename a CoreStorage logical volume group) | |
createVolume (Create a new CoreStorage logical volume) | |
deleteVolume (Delete a volume from a logical volume group) | |
encryptVolume (Start encrypting a CoreStorage logical volume) | |
decryptVolume (Start decrypting a CoreStorage logical volume) | |
unlockVolume (Attach/mount a locked CoreStorage logical volume) | |
changeVolumePassphrase (Change a CoreStorage logical volume's passphrase) | |
resizeVolume (Resize a CoreStorage volume) | |
resizeDisk (Resize a CoreStorage physical volume disk) | |
resizeStack (Resize a CoreStorage logical/physical volume set) | |
diskutil coreStorage <verb> with no options will provide help on that verb | |
FusionDriveiMac:~ admin$ diskutil cs delete 5CD21A86-1071-40F7-A90D-B97D443BBFB2 | |
Started CoreStorage operation | |
Destroying Logical Volume Group | |
Erasing disk0s2 | |
Initialized /dev/rdisk0s2 as a 113 GB case-insensitive HFS Plus volume with a 16384k journal | |
Mounting disk | |
Erasing disk1s2 | |
Initialized /dev/rdisk1s2 as a 931 GB case-insensitive HFS Plus volume with a 81920k journal | |
Mounting disk | |
Finished CoreStorage operation | |
FusionDriveiMac:~ admin$ sudo dd if=/dev/random of=/dev/disk0 | |
Password: | |
^C56473+0 records in | |
56472+0 records out | |
28913664 bytes transferred in 3.772588 secs (7664146 bytes/sec) | |
FusionDriveiMac:~ admin$ sudo dd if=/dev/random of=/dev/disk1 | |
^C35803+0 records in | |
35803+0 records out | |
18331136 bytes transferred in 2.903644 secs (6313148 bytes/sec) | |
FusionDriveiMac:~ admin$ /usr/sbin/diskutil cs createVolume AF32BD5D-EB2C-4B88-8895-935F49AF58D8 jhfs+ Macintosh HD | |
HD does not appear to be a valid disk size | |
FusionDriveiMac:~ admin$ /usr/sbin/diskutil cs createVolume AF32BD5D-EB2C-4B88-8895-935F49AF58D8 jhfs+ Macintosh HD 100% | |
HD does not appear to be a valid disk size | |
FusionDriveiMac:~ admin$ /usr/sbin/diskutil cs createVolume AF32BD5D-EB2C-4B88-8895-935F49AF58D8 jhfs+ "Macintosh HD" 100% | |
Started CoreStorage operation | |
Waiting for Logical Volume to appear | |
Formatting file system for Logical Volume | |
Initialized /dev/rdisk2 as a 1 TB case-insensitive HFS Plus volume with a 90112k journal | |
Mounting disk | |
Core Storage LV UUID: 9D17D5FB-7ECE-4E08-A4D6-80496ED82AE3 | |
Core Storage disk: disk2 | |
Finished CoreStorage operation | |
FusionDriveiMac:~ admin$ /usr/sbin/diskutil cs createVolume AF32BD5D-EB2C-4B88-8895-935F49AF58D8 jhfs+ Macintosh\ HD 100% | |
Your Logical Volume Group already has a Logical Volume | |
FusionDriveiMac:~ admin$ diskutil cs delete 5CD21A86-1071-40F7-A90D-B97D443BBFB2 | |
5CD21A86-1071-40F7-A90D-B97D443BBFB2 does not appear to be a valid Core Storage Logical Volume Group UUID or name | |
FusionDriveiMac:~ admin$ sudo dd if=/dev/random of=/dev/disk0 | |
dd: /dev/disk0: Resource busy | |
FusionDriveiMac:~ admin$ sudo dd if=/dev/random of=/dev/disk1 | |
dd: /dev/disk1: Resource busy | |
FusionDriveiMac:~ admin$ sudo dd if=/dev/random of=/dev/disk1 | |
^C39478+0 records in | |
39478+0 records out | |
20212736 bytes transferred in 2.518793 secs (8024770 bytes/sec) | |
FusionDriveiMac:~ admin$ sudo dd if=/dev/random of=/dev/disk0 | |
^C34449+0 records in | |
34448+0 records out | |
17637376 bytes transferred in 2.409135 secs (7321041 bytes/sec) | |
FusionDriveiMac:~ admin$ /usr/sbin/diskutil cs createVolume AF32BD5D-EB2C-4B88-8895-935F49AF58D8 jhfs+ Macintosh\ HD 100% | |
AF32BD5D-EB2C-4B88-8895-935F49AF58D8 does not appear to be a valid Core Storage Logical Volume Group UUID or name | |
FusionDriveiMac:~ admin$ sudo dd if=/dev/random of=/dev/disk0 | |
dd: /dev/disk0: Resource busy | |
FusionDriveiMac:~ admin$ sudo dd if=/dev/random of=/dev/disk0 | |
^C10913+0 records in | |
10913+0 records out | |
5587456 bytes transferred in 0.877640 secs (6366455 bytes/sec) | |
FusionDriveiMac:~ admin$ sudo dd if=/dev/random of=/dev/disk1 | |
^C15719+0 records in | |
15719+0 records out | |
8048128 bytes transferred in 1.583324 secs (5083058 bytes/sec) | |
FusionDriveiMac:~ admin$ diskutil cs | |
Usage: diskutil [quiet] coreStorage|CS <verb> <options> | |
where <verb> is as follows: | |
list (Show status of CoreStorage volumes) | |
info[rmation] (Get CoreStorage information by UUID or disk) | |
convert (Convert a volume into a CoreStorage volume) | |
revert (Revert a CoreStorage volume to its native type) | |
create (Create a new CoreStorage logical volume group) | |
delete (Delete a CoreStorage logical volume group) | |
rename (Rename a CoreStorage logical volume group) | |
createVolume (Create a new CoreStorage logical volume) | |
deleteVolume (Delete a volume from a logical volume group) | |
encryptVolume (Start encrypting a CoreStorage logical volume) | |
decryptVolume (Start decrypting a CoreStorage logical volume) | |
unlockVolume (Attach/mount a locked CoreStorage logical volume) | |
changeVolumePassphrase (Change a CoreStorage logical volume's passphrase) | |
resizeVolume (Resize a CoreStorage volume) | |
resizeDisk (Resize a CoreStorage physical volume disk) | |
resizeStack (Resize a CoreStorage logical/physical volume set) | |
diskutil coreStorage <verb> with no options will provide help on that verb | |
FusionDriveiMac:~ admin$ diskutil cs deleteVolume | |
FusionDriveiMac:~ admin$ sudo dd if=/dev/random of=/dev/disk0 | |
Password: | |
dd: /dev/disk0: Resource busy | |
FusionDriveiMac:~ admin$ sudo dd if=/dev/random of=/dev/disk1 | |
dd: /dev/disk1: Resource busy | |
FusionDriveiMac:~ admin$ sudo dd if=/dev/random of=/dev/disk1 | |
^C12282+0 records in | |
12282+0 records out | |
6288384 bytes transferred in 1.076779 secs (5839996 bytes/sec) | |
FusionDriveiMac:~ admin$ sudo dd if=/dev/random of=/dev/disk1 | |
^C10484+0 records in | |
10484+0 records out | |
5367808 bytes transferred in 0.729594 secs (7357254 bytes/sec) | |
FusionDriveiMac:~ admin$ sudo dd if=/dev/random of=/dev/disk0 | |
^C24292+0 records in | |
24292+0 records out | |
12437504 bytes transferred in 1.784174 secs (6971015 bytes/sec) | |
FusionDriveiMac:~ admin$ /Volumes/rtu/Desktop/macOS\ Utilities.app/Contents/MacOS/macOS\ Utilities | |
/private/var/tmp/Installers/10.12.dmg | |
/private/var/tmp/Installers/10.13.dmg | |
/private/var/tmp/Installers/10.14.dmg | |
2019-05-10 14:41:48.931 macOS Utilities[1658:256154] -[NSMenu setItemArray:]: unrecognized selector sent to instance 0x7fe87cf67820 | |
2019-05-10 14:41:48.931 macOS Utilities[1658:256154] -[NSMenu setItemArray:]: unrecognized selector sent to instance 0x7fe87cf67820 | |
[AnyHashable("NSWorkspaceVolumeURLKey"): file:///Volumes/Macintosh%20HD/, AnyHashable("NSWorkspaceVolumeLocalizedNameKey"): Macintosh HD, AnyHashable("NSDevicePath"): /Volumes/Macintosh HD] | |
2019-05-10 14:42:29.229 macOS Utilities[1658:258116] This application is modifying the autolayout engine from a background thread after the engine was accessed from the main thread. This can lead to engine corruption and weird crashes. | |
Stack:( | |
0 CoreFoundation 0x00007fffb314424b __exceptionPreprocess + 171 | |
1 libobjc.A.dylib 0x00007fffc73e548d objc_exception_throw + 48 | |
2 CoreFoundation 0x00007fffb31c2bfd +[NSException raise:format:] + 205 | |
3 Foundation 0x00007fffb4d78759 _AssertAutolayoutOnAllowedThreadsOnly + 180 | |
4 Foundation 0x00007fffb4b0866f -[NSISEngine withBehaviors:performModifications:] + 31 | |
5 AppKit 0x00007fffb0b8f390 -[NSView(NSConstraintBasedLayout) _withAutomaticEngineOptimizationDisabled:] + 70 | |
6 AppKit 0x00007fffb0b8e99e -[NSView _setSuperview:] + 1029 | |
7 AppKit 0x00007fffb0b94575 -[NSView removeFromSuperview] + 447 | |
8 AppKit 0x00007fffb0cb5d60 -[NSView removeFromSuperviewWithoutNeedingDisplay] + 38 | |
9 AppKit 0x00007fffb16b0b84 -[NSPageController _animateImage:frame:toImage:frame:direction:] + 121 | |
10 AppKit 0x00007fffb16b1632 -[NSPageController _navigateToIndex:animated:] + 1146 | |
11 macOS Utilities 0x000000010232d088 macOS Utilities + 233608 | |
12 macOS Utilities 0x000000010232e4a9 macOS Utilities + 238761 | |
13 macOS Utilities 0x000000010232561c macOS Utilities + 202268 | |
14 macOS Utilities 0x000000010232d0d1 macOS Utilities + 233681 | |
15 macOS Utilities 0x000000010232e4b9 macOS Utilities + 238777 | |
16 macOS Utilities 0x0000000102325653 macOS Utilities + 202323 | |
17 AppKit 0x00007fffb14fd846 +[NSAnimationContext runAnimationGroup:] + 58 | |
18 AppKit 0x00007fffb0bc5bea +[NSAnimationContext runAnimationGroup:completionHandler:] + 85 | |
19 macOS Utilities 0x000000010232a533 macOS Utilities + 222515 | |
20 macOS Utilities 0x000000010232bb5c macOS Utilities + 228188 | |
21 macOS Utilities 0x0000000102374b5a macOS Utilities + 527194 | |
22 macOS Utilities 0x0000000102374e2c macOS Utilities + 527916 | |
23 macOS Utilities 0x0000000102371019 macOS Utilities + 512025 | |
24 macOS Utilities 0x00000001023a428d macOS Utilities + 721549 | |
25 macOS Utilities 0x00000001023a4336 macOS Utilities + 721718 | |
26 macOS Utilities 0x0000000102391bcd macOS Utilities + 646093 | |
27 macOS Utilities 0x00000001023a4361 macOS Utilities + 721761 | |
28 macOS Utilities 0x0000000102306211 macOS Utilities + 74257 | |
29 macOS Utilities 0x000000010230a726 macOS Utilities + 91942 | |
30 macOS Utilities 0x0000000102306b4f macOS Utilities + 76623 | |
31 Foundation 0x00007fffb4b6e5f6 __39-[NSConcreteTask launchWithDictionary:]_block_invoke_2 + 20 | |
32 libdispatch.dylib 0x00007fffc7c9e524 _dispatch_call_block_and_release + 12 | |
33 libdispatch.dylib 0x00007fffc7c958fc _dispatch_client_callout + 8 | |
34 libdispatch.dylib 0x00007fffc7c9786e _dispatch_root_queue_drain + 917 | |
35 libdispatch.dylib 0x00007fffc7c9748c _dispatch_worker_thread3 + 99 | |
36 libsystem_pthread.dylib 0x00007fffc7ee45a2 _pthread_wqthread + 1299 | |
37 libsystem_pthread.dylib 0x00007fffc7ee407d start_wqthread + 13 | |
) | |
2019-05-10 14:42:29.231 macOS Utilities[1658:258116] This application is modifying the autolayout engine from a background thread after the engine was accessed from the main thread. This can lead to engine corruption and weird crashes. | |
Stack:( | |
0 CoreFoundation 0x00007fffb314424b __exceptionPreprocess + 171 | |
1 libobjc.A.dylib 0x00007fffc73e548d objc_exception_throw + 48 | |
2 CoreFoundation 0x00007fffb31c2bfd +[NSException raise:format:] + 205 | |
3 Foundation 0x00007fffb4d78759 _AssertAutolayoutOnAllowedThreadsOnly + 180 | |
4 Foundation 0x00007fffb4d784a1 -[NSISEngine _optimizeWithoutRebuilding] + 61 | |
5 Foundation 0x00007fffb4b0e7cc -[NSISEngine optimize] + 104 | |
6 Foundation 0x00007fffb4b08751 -[NSISEngine withBehaviors:performModifications:] + 257 | |
7 AppKit 0x00007fffb0b8f390 -[NSView(NSConstraintBasedLayout) _withAutomaticEngineOptimizationDisabled:] + 70 | |
8 AppKit 0x00007fffb0b8e99e -[NSView _setSuperview:] + 1029 | |
9 AppKit 0x00007fffb0b94575 -[NSView removeFromSuperview] + 447 | |
10 AppKit 0x00007fffb0cb5d60 -[NSView removeFromSuperviewWithoutNeedingDisplay] + 38 | |
11 AppKit 0x00007fffb16b0b84 -[NSPageController _animateImage:frame:toImage:frame:direction:] + 121 | |
12 AppKit 0x00007fffb16b1632 -[NSPageController _navigateToIndex:animated:] + 1146 | |
13 macOS Utilities 0x000000010232d088 macOS Utilities + 233608 | |
14 macOS Utilities 0x000000010232e4a9 macOS Utilities + 238761 | |
15 macOS Utilities 0x000000010232561c macOS Utilities + 202268 | |
16 macOS Utilities 0x000000010232d0d1 macOS Utilities + 233681 | |
17 macOS Utilities 0x000000010232e4b9 macOS Utilities + 238777 | |
18 macOS Utilities 0x0000000102325653 macOS Utilities + 202323 | |
19 AppKit 0x00007fffb14fd846 +[NSAnimationContext runAnimationGroup:] + 58 | |
20 AppKit 0x00007fffb0bc5bea +[NSAnimationContext runAnimationGroup:completionHandler:] + 85 | |
21 macOS Utilities 0x000000010232a533 macOS Utilities + 222515 | |
22 macOS Utilities 0x000000010232bb5c macOS Utilities + 228188 | |
23 macOS Utilities 0x0000000102374b5a macOS Utilities + 527194 | |
24 macOS Utilities 0x0000000102374e2c macOS Utilities + 527916 | |
25 macOS Utilities 0x0000000102371019 macOS Utilities + 512025 | |
26 macOS Utilities 0x00000001023a428d macOS Utilities + 721549 | |
27 macOS Utilities 0x00000001023a4336 macOS Utilities + 721718 | |
28 macOS Utilities 0x0000000102391bcd macOS Utilities + 646093 | |
29 macOS Utilities 0x00000001023a4361 macOS Utilities + 721761 | |
30 macOS Utilities 0x0000000102306211 macOS Utilities + 74257 | |
31 macOS Utilities 0x000000010230a726 macOS Utilities + 91942 | |
32 macOS Utilities 0x0000000102306b4f macOS Utilities + 76623 | |
33 Foundation 0x00007fffb4b6e5f6 __39-[NSConcreteTask launchWithDictionary:]_block_invoke_2 + 20 | |
34 libdispatch.dylib 0x00007fffc7c9e524 _dispatch_call_block_and_release + 12 | |
35 libdispatch.dylib 0x00007fffc7c958fc _dispatch_client_callout + 8 | |
36 libdispatch.dylib 0x00007fffc7c9786e _dispatch_root_queue_drain + 917 | |
37 libdispatch.dylib 0x00007fffc7c9748c _dispatch_worker_thread3 + 99 | |
38 libsystem_pthread.dylib 0x00007fffc7ee45a2 _pthread_wqthread + 1299 | |
39 libsystem_pthread.dylib 0x00007fffc7ee407d start_wqthread + 13 | |
) | |
2019-05-10 14:42:29.233 macOS Utilities[1658:258116] This application is modifying the autolayout engine from a background thread after the engine was accessed from the main thread. This can lead to engine corruption and weird crashes. | |
Stack:( | |
0 CoreFoundation 0x00007fffb314424b __exceptionPreprocess + 171 | |
1 libobjc.A.dylib 0x00007fffc73e548d objc_exception_throw + 48 | |
2 CoreFoundation 0x00007fffb31c2bfd +[NSException raise:format:] + 205 | |
3 Foundation 0x00007fffb4d78759 _AssertAutolayoutOnAllowedThreadsOnly + 180 | |
4 Foundation 0x00007fffb4b0866f -[NSISEngine withBehaviors:performModifications:] + 31 | |
5 AppKit 0x00007fffb0b8f390 -[NSView(NSConstraintBasedLayout) _withAutomaticEngineOptimizationDisabled:] + 70 | |
6 AppKit 0x00007fffb0b915d1 -[NSView _setWindow:] + 1664 | |
7 AppKit 0x00007fffb0b94587 -[NSView removeFromSuperview] + 465 | |
8 AppKit 0x00007fffb0cb5d60 -[NSView removeFromSuperviewWithoutNeedingDisplay] + 38 | |
9 AppKit 0x00007fffb16b0b84 -[NSPageController _animateImage:frame:toImage:frame:direction:] + 121 | |
10 AppKit 0x00007fffb16b1632 -[NSPageController _navigateToIndex:animated:] + 1146 | |
11 macOS Utilities 0x000000010232d088 macOS Utilities + 233608 | |
12 macOS Utilities 0x000000010232e4a9 macOS Utilities + 238761 | |
13 macOS Utilities 0x000000010232561c macOS Utilities + 202268 | |
14 macOS Utilities 0x000000010232d0d1 macOS Utilities + 233681 | |
15 macOS Utilities 0x000000010232e4b9 macOS Utilities + 238777 | |
16 macOS Utilities 0x0000000102325653 macOS Utilities + 202323 | |
17 AppKit 0x00007fffb14fd846 +[NSAnimationContext runAnimationGroup:] + 58 | |
18 AppKit 0x00007fffb0bc5bea +[NSAnimationContext runAnimationGroup:completionHandler:] + 85 | |
19 macOS Utilities 0x000000010232a533 macOS Utilities + 222515 | |
20 macOS Utilities 0x000000010232bb5c macOS Utilities + 228188 | |
21 macOS Utilities 0x0000000102374b5a macOS Utilities + 527194 | |
22 macOS Utilities 0x0000000102374e2c macOS Utilities + 527916 | |
23 macOS Utilities 0x0000000102371019 macOS Utilities + 512025 | |
24 macOS Utilities 0x00000001023a428d macOS Utilities + 721549 | |
25 macOS Utilities 0x00000001023a4336 macOS Utilities + 721718 | |
26 macOS Utilities 0x0000000102391bcd macOS Utilities + 646093 | |
27 macOS Utilities 0x00000001023a4361 macOS Utilities + 721761 | |
28 macOS Utilities 0x0000000102306211 macOS Utilities + 74257 | |
29 macOS Utilities 0x000000010230a726 macOS Utilities + 91942 | |
30 macOS Utilities 0x0000000102306b4f macOS Utilities + 76623 | |
31 Foundation 0x00007fffb4b6e5f6 __39-[NSConcreteTask launchWithDictionary:]_block_invoke_2 + 20 | |
32 libdispatch.dylib 0x00007fffc7c9e524 _dispatch_call_block_and_release + 12 | |
33 libdispatch.dylib 0x00007fffc7c958fc _dispatch_client_callout + 8 | |
34 libdispatch.dylib 0x00007fffc7c9786e _dispatch_root_queue_drain + 917 | |
35 libdispatch.dylib 0x00007fffc7c9748c _dispatch_worker_thread3 + 99 | |
36 libsystem_pthread.dylib 0x00007fffc7ee45a2 _pthread_wqthread + 1299 | |
37 libsystem_pthread.dylib 0x00007fffc7ee407d start_wqthread + 13 | |
) | |
2019-05-10 14:42:29.235 macOS Utilities[1658:258116] This application is modifying the autolayout engine from a background thread after the engine was accessed from the main thread. This can lead to engine corruption and weird crashes. | |
Stack:( | |
0 CoreFoundation 0x00007fffb314424b __exceptionPreprocess + 171 | |
1 libobjc.A.dylib 0x00007fffc73e548d objc_exception_throw + 48 | |
2 CoreFoundation 0x00007fffb31c2bfd +[NSException raise:format:] + 205 | |
3 Foundation 0x00007fffb4d78759 _AssertAutolayoutOnAllowedThreadsOnly + 180 | |
4 Foundation 0x00007fffb4b0866f -[NSISEngine withBehaviors:performModifications:] + 31 | |
5 AppKit 0x00007fffb0b8f390 -[NSView(NSConstraintBasedLayout) _withAutomaticEngineOptimizationDisabled:] + 70 | |
6 AppKit 0x00007fffb0b99548 -[NSView(NSConstraintBasedLayout) _setLayoutEngine:] + 2977 | |
7 AppKit 0x00007fffb142c189 __21-[NSView _setWindow:]_block_invoke.591 + 53 | |
8 Foundation 0x00007fffb4b086eb -[NSISEngine withBehaviors:performModifications:] + 155 | |
9 AppKit 0x00007fffb0b8f390 -[NSView(NSConstraintBasedLayout) _withAutomaticEngineOptimizationDisabled:] + 70 | |
10 AppKit 0x00007fffb0b915d1 -[NSView _setWindow:] + 1664 | |
11 AppKit 0x00007fffb0b94587 -[NSView removeFromSuperview] + 465 | |
12 AppKit 0x00007fffb0cb5d60 -[NSView removeFromSuperviewWithoutNeedingDisplay] + 38 | |
13 AppKit 0x00007fffb16b0b84 -[NSPageController _animateImage:frame:toImage:frame:direction:] + 121 | |
14 AppKit 0x00007fffb16b1632 -[NSPageController _navigateToIndex:animated:] + 1146 | |
15 macOS Utilities 0x000000010232d088 macOS Utilities + 233608 | |
16 macOS Utilities 0x000000010232e4a9 macOS Utilities + 238761 | |
17 macOS Utilities 0x000000010232561c macOS Utilities + 202268 | |
18 macOS Utilities 0x000000010232d0d1 macOS Utilities + 233681 | |
19 macOS Utilities 0x000000010232e4b9 macOS Utilities + 238777 | |
20 macOS Utilities 0x0000000102325653 macOS Utilities + 202323 | |
21 AppKit 0x00007fffb14fd846 +[NSAnimationContext runAnimationGroup:] + 58 | |
22 AppKit 0x00007fffb0bc5bea +[NSAnimationContext runAnimationGroup:completionHandler:] + 85 | |
23 macOS Utilities 0x000000010232a533 macOS Utilities + 222515 | |
24 macOS Utilities 0x000000010232bb5c macOS Utilities + 228188 | |
25 macOS Utilities 0x0000000102374b5a macOS Utilities + 527194 | |
26 macOS Utilities 0x0000000102374e2c macOS Utilities + 527916 | |
27 macOS Utilities 0x0000000102371019 macOS Utilities + 512025 | |
28 macOS Utilities 0x00000001023a428d macOS Utilities + 721549 | |
29 macOS Utilities 0x00000001023a4336 macOS Utilities + 721718 | |
30 macOS Utilities 0x0000000102391bcd macOS Utilities + 646093 | |
31 macOS Utilities 0x00000001023a4361 macOS Utilities + 721761 | |
32 macOS Utilities 0x0000000102306211 macOS Utilities + 74257 | |
33 macOS Utilities 0x000000010230a726 macOS Utilities + 91942 | |
34 macOS Utilities 0x0000000102306b4f macOS Utilities + 76623 | |
35 Foundation 0x00007fffb4b6e5f6 __39-[NSConcreteTask launchWithDictionary:]_block_invoke_2 + 20 | |
36 libdispatch.dylib 0x00007fffc7c9e524 _dispatch_call_block_and_release + 12 | |
37 libdispatch.dylib 0x00007fffc7c958fc _dispatch_client_callout + 8 | |
38 libdispatch.dylib 0x00007fffc7c9786e _dispatch_root_queue_drain + 917 | |
39 libdispatch.dylib 0x00007fffc7c9748c _dispatch_worker_thread3 + 99 | |
40 libsystem_pthread.dylib 0x00007fffc7ee45a2 _pthread_wqthread + 1299 | |
41 libsystem_pthread.dylib 0x00007fffc7ee407d start_wqthread + 13 | |
) | |
2019-05-10 14:42:29.237 macOS Utilities[1658:258116] This application is modifying the autolayout engine from a background thread after the engine was accessed from the main thread. This can lead to engine corruption and weird crashes. | |
Stack:( | |
0 CoreFoundation 0x00007fffb314424b __exceptionPreprocess + 171 | |
1 libobjc.A.dylib 0x00007fffc73e548d objc_exception_throw + 48 | |
2 CoreFoundation 0x00007fffb31c2bfd +[NSException raise:format:] + 205 | |
3 Foundation 0x00007fffb4d78759 _AssertAutolayoutOnAllowedThreadsOnly + 180 | |
4 Foundation 0x00007fffb4b0866f -[NSISEngine withBehaviors:performModifications:] + 31 | |
5 AppKit 0x00007fffb0b8f390 -[NSView(NSConstraintBasedLayout) _withAutomaticEngineOptimizationDisabled:] + 70 | |
6 AppKit 0x00007fffb0b99548 -[NSView(NSConstraintBasedLayout) _setLayoutEngine:] + 2977 | |
7 AppKit 0x00007fffb0c1e148 __52-[NSView(NSConstraintBasedLayout) _setLayoutEngine:]_block_invoke_2 + 232 | |
8 AppKit 0x00007fffb0c1e043 __52-[NSView(NSConstraintBasedLayout) _setLayoutEngine:]_block_invoke + 492 | |
9 Foundation 0x00007fffb4b086eb -[NSISEngine withBehaviors:performModifications:] + 155 | |
10 AppKit 0x00007fffb0b8f390 -[NSView(NSConstraintBasedLayout) _withAutomaticEngineOptimizationDisabled:] + 70 | |
11 AppKit 0x00007fffb0b99548 -[NSView(NSConstraintBasedLayout) _setLayoutEngine:] + 2977 | |
12 AppKit 0x00007fffb142c189 __21-[NSView _setWindow:]_block_invoke.591 + 53 | |
13 Foundation 0x00007fffb4b086eb -[NSISEngine withBehaviors:performModifications:] + 155 | |
14 AppKit 0x00007fffb0b8f390 -[NSView(NSConstraintBasedLayout) _withAutomaticEngineOptimizationDisabled:] + 70 | |
15 AppKit 0x00007fffb0b915d1 -[NSView _setWindow:] + 1664 | |
16 AppKit 0x00007fffb0b94587 -[NSView removeFromSuperview] + 465 | |
17 AppKit 0x00007fffb0cb5d60 -[NSView removeFromSuperviewWithoutNeedingDisplay] + 38 | |
18 AppKit 0x00007fffb16b0b84 -[NSPageController _animateImage:frame:toImage:frame:direction:] + 121 | |
19 AppKit 0x00007fffb16b1632 -[NSPageController _navigateToIndex:animated:] + 1146 | |
20 macOS Utilities 0x000000010232d088 macOS Utilities + 233608 | |
21 macOS Utilities 0x000000010232e4a9 macOS Utilities + 238761 | |
22 macOS Utilities 0x000000010232561c macOS Utilities + 202268 | |
23 macOS Utilities 0x000000010232d0d1 macOS Utilities + 233681 | |
24 macOS Utilities 0x000000010232e4b9 macOS Utilities + 238777 | |
25 macOS Utilities 0x0000000102325653 macOS Utilities + 202323 | |
26 AppKit 0x00007fffb14fd846 +[NSAnimationContext runAnimationGroup:] + 58 | |
27 AppKit 0x00007fffb0bc5bea +[NSAnimationContext runAnimationGroup:completionHandler:] + 85 | |
28 macOS Utilities 0x000000010232a533 macOS Utilities + 222515 | |
29 macOS Utilities 0x000000010232bb5c macOS Utilities + 228188 | |
30 macOS Utilities 0x0000000102374b5a macOS Utilities + 527194 | |
31 macOS Utilities 0x0000000102374e2c macOS Utilities + 527916 | |
32 macOS Utilities 0x0000000102371019 macOS Utilities + 512025 | |
33 macOS Utilities 0x00000001023a428d macOS Utilities + 721549 | |
34 macOS Utilities 0x00000001023a4336 macOS Utilities + 721718 | |
35 macOS Utilities 0x0000000102391bcd macOS Utilities + 646093 | |
36 macOS Utilities 0x00000001023a4361 macOS Utilities + 721761 | |
37 macOS Utilities 0x0000000102306211 macOS Utilities + 74257 | |
38 macOS Utilities 0x000000010230a726 macOS Utilities + 91942 | |
39 macOS Utilities 0x0000000102306b4f macOS Utilities + 76623 | |
40 Foundation 0x00007fffb4b6e5f6 __39-[NSConcreteTask launchWithDictionary:]_block_invoke_2 + 20 | |
41 libdispatch.dylib 0x00007fffc7c9e524 _dispatch_call_block_and_release + 12 | |
42 libdispatch.dylib 0x00007fffc7c958fc _dispatch_client_callout + 8 | |
43 libdispatch.dylib 0x00007fffc7c9786e _dispatch_root_queue_drain + 917 | |
44 libdispatch.dylib 0x00007fffc7c9748c _dispatch_worker_thread3 + 99 | |
45 libsystem_pthread.dylib 0x00007fffc7ee45a2 _pthread_wqthread + 1299 | |
46 libsystem_pthread.dylib 0x00007fffc7ee407d start_wqthread + 13 | |
) | |
2019-05-10 14:42:29.240 macOS Utilities[1658:258116] This application is modifying the autolayout engine from a background thread after the engine was accessed from the main thread. This can lead to engine corruption and weird crashes. | |
Stack:( | |
0 CoreFoundation 0x00007fffb314424b __exceptionPreprocess + 171 | |
1 libobjc.A.dylib 0x00007fffc73e548d objc_exception_throw + 48 | |
2 CoreFoundation 0x00007fffb31c2bfd +[NSException raise:format:] + 205 | |
3 Foundation 0x00007fffb4d78759 _AssertAutolayoutOnAllowedThreadsOnly + 180 | |
4 Foundation 0x00007fffb4b0866f -[NSISEngine withBehaviors:performModifications:] + 31 | |
5 AppKit 0x00007fffb0b8f390 -[NSView(NSConstraintBasedLayout) _withAutomaticEngineOptimizationDisabled:] + 70 | |
6 AppKit 0x00007fffb0b99548 -[NSView(NSConstraintBasedLayout) _setLayoutEngine:] + 2977 | |
7 AppKit 0x00007fffb0c1e148 __52-[NSView(NSConstraintBasedLayout) _setLayoutEngine:]_block_invoke_2 + 232 | |
8 AppKit 0x00007fffb0c1e043 __52-[NSView(NSConstraintBasedLayout) _setLayoutEngine:]_block_invoke + 492 | |
9 Foundation 0x00007fffb4b086eb -[NSISEngine withBehaviors:performModifications:] + 155 | |
10 AppKit 0x00007fffb0b8f390 -[NSView(NSConstraintBasedLayout) _withAutomaticEngineOptimizationDisabled:] + 70 | |
11 AppKit 0x00007fffb0b99548 -[NSView(NSConstraintBasedLayout) _setLayoutEngine:] + 2977 | |
12 AppKit 0x00007fffb142c189 __21-[NSView _setWindow:]_block_invoke.591 + 53 | |
13 Foundation 0x00007fffb4b086eb -[NSISEngine withBehaviors:performModifications:] + 155 | |
14 AppKit 0x00007fffb0b8f390 -[NSView(NSConstraintBasedLayout) _withAutomaticEngineOptimizationDisabled:] + 70 | |
15 AppKit 0x00007fffb0b915d1 -[NSView _setWindow:] + 1664 | |
16 AppKit 0x00007fffb0b94587 -[NSView removeFromSuperview] + 465 | |
17 AppKit 0x00007fffb0cb5d60 -[NSView removeFromSuperviewWithoutNeedingDisplay] + 38 | |
18 AppKit 0x00007fffb16b0b84 -[NSPageController _animateImage:frame:toImage:frame:direction:] + 121 | |
19 AppKit 0x00007fffb16b1632 -[NSPageController _navigateToIndex:animated:] + 1146 | |
20 macOS Utilities 0x000000010232d088 macOS Utilities + 233608 | |
21 macOS Utilities 0x000000010232e4a9 macOS Utilities + 238761 | |
22 macOS Utilities 0x000000010232561c macOS Utilities + 202268 | |
23 macOS Utilities 0x000000010232d0d1 macOS Utilities + 233681 | |
24 macOS Utilities 0x000000010232e4b9 macOS Utilities + 238777 | |
25 macOS Utilities 0x0000000102325653 macOS Utilities + 202323 | |
26 AppKit 0x00007fffb14fd846 +[NSAnimationContext runAnimationGroup:] + 58 | |
27 AppKit 0x00007fffb0bc5bea +[NSAnimationContext runAnimationGroup:completionHandler:] + 85 | |
28 macOS Utilities 0x000000010232a533 macOS Utilities + 222515 | |
29 macOS Utilities 0x000000010232bb5c macOS Utilities + 228188 | |
30 macOS Utilities 0x0000000102374b5a macOS Utilities + 527194 | |
31 macOS Utilities 0x0000000102374e2c macOS Utilities + 527916 | |
32 macOS Utilities 0x0000000102371019 macOS Utilities + 512025 | |
33 macOS Utilities 0x00000001023a428d macOS Utilities + 721549 | |
34 macOS Utilities 0x00000001023a4336 macOS Utilities + 721718 | |
35 macOS Utilities 0x0000000102391bcd macOS Utilities + 646093 | |
36 macOS Utilities 0x00000001023a4361 macOS Utilities + 721761 | |
37 macOS Utilities 0x0000000102306211 macOS Utilities + 74257 | |
38 macOS Utilities 0x000000010230a726 macOS Utilities + 91942 | |
39 macOS Utilities 0x0000000102306b4f macOS Utilities + 76623 | |
40 Foundation 0x00007fffb4b6e5f6 __39-[NSConcreteTask launchWithDictionary:]_block_invoke_2 + 20 | |
41 libdispatch.dylib 0x00007fffc7c9e524 _dispatch_call_block_and_release + 12 | |
42 libdispatch.dylib 0x00007fffc7c958fc _dispatch_client_callout + 8 | |
43 libdispatch.dylib 0x00007fffc7c9786e _dispatch_root_queue_drain + 917 | |
44 libdispatch.dylib 0x00007fffc7c9748c _dispatch_worker_thread3 + 99 | |
45 libsystem_pthread.dylib 0x00007fffc7ee45a2 _pthread_wqthread + 1299 | |
46 libsystem_pthread.dylib 0x00007fffc7ee407d start_wqthread + 13 | |
) | |
2019-05-10 14:42:29.242 macOS Utilities[1658:258116] This application is modifying the autolayout engine from a background thread after the engine was accessed from the main thread. This can lead to engine corruption and weird crashes. | |
Stack:( | |
0 CoreFoundation 0x00007fffb314424b __exceptionPreprocess + 171 | |
1 libobjc.A.dylib 0x00007fffc73e548d objc_exception_throw + 48 | |
2 CoreFoundation 0x00007fffb31c2bfd +[NSException raise:format:] + 205 | |
3 Foundation 0x00007fffb4d78759 _AssertAutolayoutOnAllowedThreadsOnly + 180 | |
4 Foundation 0x00007fffb4b0866f -[NSISEngine withBehaviors:performModifications:] + 31 | |
5 AppKit 0x00007fffb0b8f390 -[NSView(NSConstraintBasedLayout) _withAutomaticEngineOptimizationDisabled:] + 70 | |
6 AppKit 0x00007fffb0b99548 -[NSView(NSConstraintBasedLayout) _setLayoutEngine:] + 2977 | |
7 AppKit 0x00007fffb0c1e148 __52-[NSView(NSConstraintBasedLayout) _setLayoutEngine:]_block_invoke_2 + 232 | |
8 AppKit 0x00007fffb0c1e043 __52-[NSView(NSConstraintBasedLayout) _setLayoutEngine:]_block_invoke + 492 | |
9 Foundation 0x00007fffb4b086eb -[NSISEngine withBehaviors:performModifications:] + 155 | |
10 AppKit 0x00007fffb0b8f390 -[NSView(NSConstraintBasedLayout) _withAutomaticEngineOptimizationDisabled:] + 70 | |
11 AppKit 0x00007fffb0b99548 -[NSView(NSConstraintBasedLayout) _setLayoutEngine:] + 2977 | |
12 AppKit 0x00007fffb142c189 __21-[NSView _setWindow:]_block_invoke.591 + 53 | |
13 Foundation 0x00007fffb4b086eb -[NSISEngine withBehaviors:performModifications:] + 155 | |
14 AppKit 0x00007fffb0b8f390 -[NSView(NSConstraintBasedLayout) _withAutomaticEngineOptimizationDisabled:] + 70 | |
15 AppKit 0x00007fffb0b915d1 -[NSView _setWindow:] + 1664 | |
16 AppKit 0x00007fffb0b94587 -[NSView removeFromSuperview] + 465 | |
17 AppKit 0x00007fffb0cb5d60 -[NSView removeFromSuperviewWithoutNeedingDisplay] + 38 | |
18 AppKit 0x00007fffb16b0b84 -[NSPageController _animateImage:frame:toImage:frame:direction:] + 121 | |
19 AppKit 0x00007fffb16b1632 -[NSPageController _navigateToIndex:animated:] + 1146 | |
20 macOS Utilities 0x000000010232d088 macOS Utilities + 233608 | |
21 macOS Utilities 0x000000010232e4a9 macOS Utilities + 238761 | |
22 macOS Utilities 0x000000010232561c macOS Utilities + 202268 | |
23 macOS Utilities 0x000000010232d0d1 macOS Utilities + 233681 | |
24 macOS Utilities 0x000000010232e4b9 macOS Utilities + 238777 | |
25 macOS Utilities 0x0000000102325653 macOS Utilities + 202323 | |
26 AppKit 0x00007fffb14fd846 +[NSAnimationContext runAnimationGroup:] + 58 | |
27 AppKit 0x00007fffb0bc5bea +[NSAnimationContext runAnimationGroup:completionHandler:] + 85 | |
28 macOS Utilities 0x000000010232a533 macOS Utilities + 222515 | |
29 macOS Utilities 0x000000010232bb5c macOS Utilities + 228188 | |
30 macOS Utilities 0x0000000102374b5a macOS Utilities + 527194 | |
31 macOS Utilities 0x0000000102374e2c macOS Utilities + 527916 | |
32 macOS Utilities 0x0000000102371019 macOS Utilities + 512025 | |
33 macOS Utilities 0x00000001023a428d macOS Utilities + 721549 | |
34 macOS Utilities 0x00000001023a4336 macOS Utilities + 721718 | |
35 macOS Utilities 0x0000000102391bcd macOS Utilities + 646093 | |
36 macOS Utilities 0x00000001023a4361 macOS Utilities + 721761 | |
37 macOS Utilities 0x0000000102306211 macOS Utilities + 74257 | |
38 macOS Utilities 0x000000010230a726 macOS Utilities + 91942 | |
39 macOS Utilities 0x0000000102306b4f macOS Utilities + 76623 | |
40 Foundation 0x00007fffb4b6e5f6 __39-[NSConcreteTask launchWithDictionary:]_block_invoke_2 + 20 | |
41 libdispatch.dylib 0x00007fffc7c9e524 _dispatch_call_block_and_release + 12 | |
42 libdispatch.dylib 0x00007fffc7c958fc _dispatch_client_callout + 8 | |
43 libdispatch.dylib 0x00007fffc7c9786e _dispatch_root_queue_drain + 917 | |
44 libdispatch.dylib 0x00007fffc7c9748c _dispatch_worker_thread3 + 99 | |
45 libsystem_pthread.dylib 0x00007fffc7ee45a2 _pthread_wqthread + 1299 | |
46 libsystem_pthread.dylib 0x00007fffc7ee407d start_wqthread + 13 | |
) | |
2019-05-10 14:42:29.244 macOS Utilities[1658:258116] This application is modifying the autolayout engine from a background thread after the engine was accessed from the main thread. This can lead to engine corruption and weird crashes. | |
Stack:( | |
0 CoreFoundation 0x00007fffb314424b __exceptionPreprocess + 171 | |
1 libobjc.A.dylib 0x00007fffc73e548d objc_exception_throw + 48 | |
2 CoreFoundation 0x00007fffb31c2bfd +[NSException raise:format:] + 205 | |
3 Foundation 0x00007fffb4d78759 _AssertAutolayoutOnAllowedThreadsOnly + 180 | |
4 Foundation 0x00007fffb4d784a1 -[NSISEngine _optimizeWithoutRebuilding] + 61 | |
5 Foundation 0x00007fffb4b0e7cc -[NSISEngine optimize] + 104 | |
6 Foundation 0x00007fffb4b08751 -[NSISEngine withBehaviors:performModifications:] + 257 | |
7 AppKit 0x00007fffb0b8f390 -[NSView(NSConstraintBasedLayout) _withAutomaticEngineOptimizationDisabled:] + 70 | |
8 AppKit 0x00007fffb0b915d1 -[NSView _setWindow:] + 1664 | |
9 AppKit 0x00007fffb0b94587 -[NSView removeFromSuperview] + 465 | |
10 AppKit 0x00007fffb0cb5d60 -[NSView removeFromSuperviewWithoutNeedingDisplay] + 38 | |
11 AppKit 0x00007fffb16b0b84 -[NSPageController _animateImage:frame:toImage:frame:direction:] + 121 | |
12 AppKit 0x00007fffb16b1632 -[NSPageController _navigateToIndex:animated:] + 1146 | |
13 macOS Utilities 0x000000010232d088 macOS Utilities + 233608 | |
14 macOS Utilities 0x000000010232e4a9 macOS Utilities + 238761 | |
15 macOS Utilities 0x000000010232561c macOS Utilities + 202268 | |
16 macOS Utilities 0x000000010232d0d1 macOS Utilities + 233681 | |
17 macOS Utilities 0x000000010232e4b9 macOS Utilities + 238777 | |
18 macOS Utilities 0x0000000102325653 macOS Utilities + 202323 | |
19 AppKit 0x00007fffb14fd846 +[NSAnimationContext runAnimationGroup:] + 58 | |
20 AppKit 0x00007fffb0bc5bea +[NSAnimationContext runAnimationGroup:completionHandler:] + 85 | |
21 macOS Utilities 0x000000010232a533 macOS Utilities + 222515 | |
22 macOS Utilities 0x000000010232bb5c macOS Utilities + 228188 | |
23 macOS Utilities 0x0000000102374b5a macOS Utilities + 527194 | |
24 macOS Utilities 0x0000000102374e2c macOS Utilities + 527916 | |
25 macOS Utilities 0x0000000102371019 macOS Utilities + 512025 | |
26 macOS Utilities 0x00000001023a428d macOS Utilities + 721549 | |
27 macOS Utilities 0x00000001023a4336 macOS Utilities + 721718 | |
28 macOS Utilities 0x0000000102391bcd macOS Utilities + 646093 | |
29 macOS Utilities 0x00000001023a4361 macOS Utilities + 721761 | |
30 macOS Utilities 0x0000000102306211 macOS Utilities + 74257 | |
31 macOS Utilities 0x000000010230a726 macOS Utilities + 91942 | |
32 macOS Utilities 0x0000000102306b4f macOS Utilities + 76623 | |
33 Foundation 0x00007fffb4b6e5f6 __39-[NSConcreteTask launchWithDictionary:]_block_invoke_2 + 20 | |
34 libdispatch.dylib 0x00007fffc7c9e524 _dispatch_call_block_and_release + 12 | |
35 libdispatch.dylib 0x00007fffc7c958fc _dispatch_client_callout + 8 | |
36 libdispatch.dylib 0x00007fffc7c9786e _dispatch_root_queue_drain + 917 | |
37 libdispatch.dylib 0x00007fffc7c9748c _dispatch_worker_thread3 + 99 | |
38 libsystem_pthread.dylib 0x00007fffc7ee45a2 _pthread_wqthread + 1299 | |
39 libsystem_pthread.dylib 0x00007fffc7ee407d start_wqthread + 13 | |
) | |
2019-05-10 14:42:29.246 macOS Utilities[1658:258116] This application is modifying the autolayout engine from a background thread after the engine was accessed from the main thread. This can lead to engine corruption and weird crashes. | |
Stack:( | |
0 CoreFoundation 0x00007fffb314424b __exceptionPreprocess + 171 | |
1 libobjc.A.dylib 0x00007fffc73e548d objc_exception_throw + 48 | |
2 CoreFoundation 0x00007fffb31c2bfd +[NSException raise:format:] + 205 | |
3 Foundation 0x00007fffb4d78759 _AssertAutolayoutOnAllowedThreadsOnly + 180 | |
4 Foundation 0x00007fffb4b0866f -[NSISEngine withBehaviors:performModifications:] + 31 | |
5 AppKit 0x00007fffb0b91ae6 -[NSView _setWindow:] + 2965 | |
6 AppKit 0x00007fffb0b94587 -[NSView removeFromSuperview] + 465 | |
7 AppKit 0x00007fffb0cb5d60 -[NSView removeFromSuperviewWithoutNeedingDisplay] + 38 | |
8 AppKit 0x00007fffb16b0b84 -[NSPageController _animateImage:frame:toImage:frame:direction:] + 121 | |
9 AppKit 0x00007fffb16b1632 -[NSPageController _navigateToIndex:animated:] + 1146 | |
10 macOS Utilities 0x000000010232d088 macOS Utilities + 233608 | |
11 macOS Utilities 0x000000010232e4a9 macOS Utilities + 238761 | |
12 macOS Utilities 0x000000010232561c macOS Utilities + 202268 | |
13 macOS Utilities 0x000000010232d0d1 macOS Utilities + 233681 | |
14 macOS Utilities 0x000000010232e4b9 macOS Utilities + 238777 | |
15 macOS Utilities 0x0000000102325653 macOS Utilities + 202323 | |
16 AppKit 0x00007fffb14fd846 +[NSAnimationContext runAnimationGroup:] + 58 | |
17 AppKit 0x00007fffb0bc5bea +[NSAnimationContext runAnimationGroup:completionHandler:] + 85 | |
18 macOS Utilities 0x000000010232a533 macOS Utilities + 222515 | |
19 macOS Utilities 0x000000010232bb5c macOS Utilities + 228188 | |
20 macOS Utilities 0x0000000102374b5a macOS Utilities + 527194 | |
21 macOS Utilities 0x0000000102374e2c macOS Utilities + 527916 | |
22 macOS Utilities 0x0000000102371019 macOS Utilities + 512025 | |
23 macOS Utilities 0x00000001023a428d macOS Utilities + 721549 | |
24 macOS Utilities 0x00000001023a4336 macOS Utilities + 721718 | |
25 macOS Utilities 0x0000000102391bcd macOS Utilities + 646093 | |
26 macOS Utilities 0x00000001023a4361 macOS Utilities + 721761 | |
27 macOS Utilities 0x0000000102306211 macOS Utilities + 74257 | |
28 macOS Utilities 0x000000010230a726 macOS Utilities + 91942 | |
29 macOS Utilities 0x0000000102306b4f macOS Utilities + 76623 | |
30 Foundation 0x00007fffb4b6e5f6 __39-[NSConcreteTask launchWithDictionary:]_block_invoke_2 + 20 | |
31 libdispatch.dylib 0x00007fffc7c9e524 _dispatch_call_block_and_release + 12 | |
32 libdispatch.dylib 0x00007fffc7c958fc _dispatch_client_callout + 8 | |
33 libdispatch.dylib 0x00007fffc7c9786e _dispatch_root_queue_drain + 917 | |
34 libdispatch.dylib 0x00007fffc7c9748c _dispatch_worker_thread3 + 99 | |
35 libsystem_pthread.dylib 0x00007fffc7ee45a2 _pthread_wqthread + 1299 | |
36 libsystem_pthread.dylib 0x00007fffc7ee407d start_wqthread + 13 | |
) | |
2019-05-10 14:42:29.248 macOS Utilities[1658:258116] This application is modifying the autolayout engine from a background thread after the engine was accessed from the main thread. This can lead to engine corruption and weird crashes. | |
Stack:( | |
0 CoreFoundation 0x00007fffb314424b __exceptionPreprocess + 171 | |
1 libobjc.A.dylib 0x00007fffc73e548d objc_exception_throw + 48 | |
2 CoreFoundation 0x00007fffb31c2bfd +[NSException raise:format:] + 205 | |
3 Foundation 0x00007fffb4d78759 _AssertAutolayoutOnAllowedThreadsOnly + 180 | |
4 Foundation 0x00007fffb4b0866f -[NSISEngine withBehaviors:performModifications:] + 31 | |
5 AppKit 0x00007fffb0b91ae6 -[NSView _setWindow:] + 2965 | |
6 AppKit 0x00007fffb0b9cf32 -[NSControl _setWindow:] + 154 | |
7 AppKit 0x00007fffb0bd4eb5 -[NSButton _setWindow:] + 48 | |
8 CoreFoundation 0x00007fffb30c0972 __53-[__NSArrayM enumerateObjectsWithOptions:usingBlock:]_block_invoke + 114 | |
9 CoreFoundation 0x00007fffb30c082f -[__NSArrayM enumerateObjectsWithOptions:usingBlock:] + 239 | |
10 AppKit 0x00007fffb142c2a7 __21-[NSView _setWindow:]_block_invoke.643 + 151 | |
11 Foundation 0x00007fffb4b086eb -[NSISEngine withBehaviors:performModifications:] + 155 | |
12 AppKit 0x00007fffb0b91ae6 -[NSView _setWindow:] + 2965 | |
13 AppKit 0x00007fffb0b94587 -[NSView removeFromSuperview] + 465 | |
14 AppKit 0x00007fffb0cb5d60 -[NSView removeFromSuperviewWithoutNeedingDisplay] + 38 | |
15 AppKit 0x00007fffb16b0b84 -[NSPageController _animateImage:frame:toImage:frame:direction:] + 121 | |
16 AppKit 0x00007fffb16b1632 -[NSPageController _navigateToIndex:animated:] + 1146 | |
17 macOS Utilities 0x000000010232d088 macOS Utilities + 233608 | |
18 macOS Utilities 0x000000010232e4a9 macOS Utilities + 238761 | |
19 macOS Utilities 0x000000010232561c macOS Utilities + 202268 | |
20 macOS Utilities 0x000000010232d0d1 macOS Utilities + 233681 | |
21 macOS Utilities 0x000000010232e4b9 macOS Utilities + 238777 | |
22 macOS Utilities 0x0000000102325653 macOS Utilities + 202323 | |
23 AppKit 0x00007fffb14fd846 +[NSAnimationContext runAnimationGroup:] + 58 | |
24 AppKit 0x00007fffb0bc5bea +[NSAnimationContext runAnimationGroup:completionHandler:] + 85 | |
25 macOS Utilities 0x000000010232a533 macOS Utilities + 222515 | |
26 macOS Utilities 0x000000010232bb5c macOS Utilities + 228188 | |
27 macOS Utilities 0x0000000102374b5a macOS Utilities + 527194 | |
28 macOS Utilities 0x0000000102374e2c macOS Utilities + 527916 | |
29 macOS Utilities 0x0000000102371019 macOS Utilities + 512025 | |
30 macOS Utilities 0x00000001023a428d macOS Utilities + 721549 | |
31 macOS Utilities 0x00000001023a4336 macOS Utilities + 721718 | |
32 macOS Utilities 0x0000000102391bcd macOS Utilities + 646093 | |
33 macOS Utilities 0x00000001023a4361 macOS Utilities + 721761 | |
34 macOS Utilities 0x0000000102306211 macOS Utilities + 74257 | |
35 macOS Utilities 0x000000010230a726 macOS Utilities + 91942 | |
36 macOS Utilities 0x0000000102306b4f macOS Utilities + 76623 | |
37 Foundation 0x00007fffb4b6e5f6 __39-[NSConcreteTask launchWithDictionary:]_block_invoke_2 + 20 | |
38 libdispatch.dylib 0x00007fffc7c9e524 _dispatch_call_block_and_release + 12 | |
39 libdispatch.dylib 0x00007fffc7c958fc _dispatch_client_callout + 8 | |
40 libdispatch.dylib 0x00007fffc7c9786e _dispatch_root_queue_drain + 917 | |
41 libdispatch.dylib 0x00007fffc7c9748c _dispatch_worker_thread3 + 99 | |
42 libsystem_pthread.dylib 0x00007fffc7ee45a2 _pthread_wqthread + 1299 | |
43 libsystem_pthread.dylib 0x00007fffc7ee407d start_wqthread + 13 | |
) | |
2019-05-10 14:42:29.250 macOS Utilities[1658:258116] This application is modifying the autolayout engine from a background thread after the engine was accessed from the main thread. This can lead to engine corruption and weird crashes. | |
Stack:( | |
0 CoreFoundation 0x00007fffb314424b __exceptionPreprocess + 171 | |
1 libobjc.A.dylib 0x00007fffc73e548d objc_exception_throw + 48 | |
2 CoreFoundation 0x00007fffb31c2bfd +[NSException raise:format:] + 205 | |
3 Foundation 0x00007fffb4d78759 _AssertAutolayoutOnAllowedThreadsOnly + 180 | |
4 Foundation 0x00007fffb4b0866f -[NSISEngine withBehaviors:performModifications:] + 31 | |
5 AppKit 0x00007fffb0b8f390 -[NSView(NSConstraintBasedLayout) _withAutomaticEngineOptimizationDisabled:] + 70 | |
6 AppKit 0x00007fffb0c1e043 __52-[NSView(NSConstraintBasedLayout) _setLayoutEngine:]_block_invoke + 492 | |
7 AppKit 0x00007fffb0b99548 -[NSView(NSConstraintBasedLayout) _setLayoutEngine:] + 2977 | |
8 AppKit 0x00007fffb0b8edd6 -[NSView _setSuperview:] + 2109 | |
9 AppKit 0x00007fffb0b8e14d -[NSView addSubview:] + 441 | |
10 AppKit 0x00007fffb0f6bc04 -[NSPageController _setupTransitionHierarchyWithSourceView:frame:destinationView:frame:forDirection:destinationValid:] + 284 | |
11 AppKit 0x00007fffb16b0ce8 -[NSPageController _animateImage:frame:toImage:frame:direction:] + 477 | |
12 AppKit 0x00007fffb16b1632 -[NSPageController _navigateToIndex:animated:] + 1146 | |
13 macOS Utilities 0x000000010232d088 macOS Utilities + 233608 | |
14 macOS Utilities 0x000000010232e4a9 macOS Utilities + 238761 | |
15 macOS Utilities 0x000000010232561c macOS Utilities + 202268 | |
16 macOS Utilities 0x000000010232d0d1 macOS Utilities + 233681 | |
17 macOS Utilities 0x000000010232e4b9 macOS Utilities + 238777 | |
18 macOS Utilities 0x0000000102325653 macOS Utilities + 202323 | |
19 AppKit 0x00007fffb14fd846 +[NSAnimationContext runAnimationGroup:] + 58 | |
20 AppKit 0x00007fffb0bc5bea +[NSAnimationContext runAnimationGroup:completionHandler:] + 85 | |
21 macOS Utilities 0x000000010232a533 macOS Utilities + 222515 | |
22 macOS Utilities 0x000000010232bb5c macOS Utilities + 228188 | |
23 macOS Utilities 0x0000000102374b5a macOS Utilities + 527194 | |
24 macOS Utilities 0x0000000102374e2c macOS Utilities + 527916 | |
25 macOS Utilities 0x0000000102371019 macOS Utilities + 512025 | |
26 macOS Utilities 0x00000001023a428d macOS Utilities + 721549 | |
27 macOS Utilities 0x00000001023a4336 macOS Utilities + 721718 | |
28 macOS Utilities 0x0000000102391bcd macOS Utilities + 646093 | |
29 macOS Utilities 0x00000001023a4361 macOS Utilities + 721761 | |
30 macOS Utilities 0x0000000102306211 macOS Utilities + 74257 | |
31 macOS Utilities 0x000000010230a726 macOS Utilities + 91942 | |
32 macOS Utilities 0x0000000102306b4f macOS Utilities + 76623 | |
33 Foundation 0x00007fffb4b6e5f6 __39-[NSConcreteTask launchWithDictionary:]_block_invoke_2 + 20 | |
34 libdispatch.dylib 0x00007fffc7c9e524 _dispatch_call_block_and_release + 12 | |
35 libdispatch.dylib 0x00007fffc7c958fc _dispatch_client_callout + 8 | |
36 libdispatch.dylib 0x00007fffc7c9786e _dispatch_root_queue_drain + 917 | |
37 libdispatch.dylib 0x00007fffc7c9748c _dispatch_worker_thread3 + 99 | |
38 libsystem_pthread.dylib 0x00007fffc7ee45a2 _pthread_wqthread + 1299 | |
39 libsystem_pthread.dylib 0x00007fffc7ee407d start_wqthread + 13 | |
) | |
2019-05-10 14:42:29.252 macOS Utilities[1658:258116] This application is modifying the autolayout engine from a background thread after the engine was accessed from the main thread. This can lead to engine corruption and weird crashes. | |
Stack:( | |
0 CoreFoundation 0x00007fffb314424b __exceptionPreprocess + 171 | |
1 libobjc.A.dylib 0x00007fffc73e548d objc_exception_throw + 48 | |
2 CoreFoundation 0x00007fffb31c2bfd +[NSException raise:format:] + 205 | |
3 Foundation 0x00007fffb4d78759 _AssertAutolayoutOnAllowedThreadsOnly + 180 | |
4 Foundation 0x00007fffb4b0866f -[NSISEngine withBehaviors:performModifications:] + 31 | |
5 AppKit 0x00007fffb0b8f390 -[NSView(NSConstraintBasedLayout) _withAutomaticEngineOptimizationDisabled:] + 70 | |
6 AppKit 0x00007fffb0b915d1 -[NSView _setWindow:] + 1664 | |
7 AppKit 0x00007fffb0b9cf32 -[NSControl _setWindow:] + 154 | |
8 AppKit 0x00007fffb0b8e161 -[NSView addSubview:] + 461 | |
9 AppKit 0x00007fffb0f6bc04 -[NSPageController _setupTransitionHierarchyWithSourceView:frame:destinationView:frame:forDirection:destinationValid:] + 284 | |
10 AppKit 0x00007fffb16b0ce8 -[NSPageController _animateImage:frame:toImage:frame:direction:] + 477 | |
11 AppKit 0x00007fffb16b1632 -[NSPageController _navigateToIndex:animated:] + 1146 | |
12 macOS Utilities 0x000000010232d088 macOS Utilities + 233608 | |
13 macOS Utilities 0x000000010232e4a9 macOS Utilities + 238761 | |
14 macOS Utilities 0x000000010232561c macOS Utilities + 202268 | |
15 macOS Utilities 0x000000010232d0d1 macOS Utilities + 233681 | |
16 macOS Utilities 0x000000010232e4b9 macOS Utilities + 238777 | |
17 macOS Utilities 0x0000000102325653 macOS Utilities + 202323 | |
18 AppKit 0x00007fffb14fd846 +[NSAnimationContext runAnimationGroup:] + 58 | |
19 AppKit 0x00007fffb0bc5bea +[NSAnimationContext runAnimationGroup:completionHandler:] + 85 | |
20 macOS Utilities 0x000000010232a533 macOS Utilities + 222515 | |
21 macOS Utilities 0x000000010232bb5c macOS Utilities + 228188 | |
22 macOS Utilities 0x0000000102374b5a macOS Utilities + 527194 | |
23 macOS Utilities 0x0000000102374e2c macOS Utilities + 527916 | |
24 macOS Utilities 0x0000000102371019 macOS Utilities + 512025 | |
25 macOS Utilities 0x00000001023a428d macOS Utilities + 721549 | |
26 macOS Utilities 0x00000001023a4336 macOS Utilities + 721718 | |
27 macOS Utilities 0x0000000102391bcd macOS Utilities + 646093 | |
28 macOS Utilities 0x00000001023a4361 macOS Utilities + 721761 | |
29 macOS Utilities 0x0000000102306211 macOS Utilities + 74257 | |
30 macOS Utilities 0x000000010230a726 macOS Utilities + 91942 | |
31 macOS Utilities 0x0000000102306b4f macOS Utilities + 76623 | |
32 Foundation 0x00007fffb4b6e5f6 __39-[NSConcreteTask launchWithDictionary:]_block_invoke_2 + 20 | |
33 libdispatch.dylib 0x00007fffc7c9e524 _dispatch_call_block_and_release + 12 | |
34 libdispatch.dylib 0x00007fffc7c958fc _dispatch_client_callout + 8 | |
35 libdispatch.dylib 0x00007fffc7c9786e _dispatch_root_queue_drain + 917 | |
36 libdispatch.dylib 0x00007fffc7c9748c _dispatch_worker_thread3 + 99 | |
37 libsystem_pthread.dylib 0x00007fffc7ee45a2 _pthread_wqthread + 1299 | |
38 libsystem_pthread.dylib 0x00007fffc7ee407d start_wqthread + 13 | |
) | |
2019-05-10 14:42:29.254 macOS Utilities[1658:258116] This application is modifying the autolayout engine from a background thread after the engine was accessed from the main thread. This can lead to engine corruption and weird crashes. | |
Stack:( | |
0 CoreFoundation 0x00007fffb314424b __exceptionPreprocess + 171 | |
1 libobjc.A.dylib 0x00007fffc73e548d objc_exception_throw + 48 | |
2 CoreFoundation 0x00007fffb31c2bfd +[NSException raise:format:] + 205 | |
3 Foundation 0x00007fffb4d78759 _AssertAutolayoutOnAllowedThreadsOnly + 180 | |
4 Foundation 0x00007fffb4b0866f -[NSISEngine withBehaviors:performModifications:] + 31 | |
5 AppKit 0x00007fffb0b8f390 -[NSView(NSConstraintBasedLayout) _withAutomaticEngineOptimizationDisabled:] + 70 | |
6 AppKit 0x00007fffb0c1e043 __52-[NSView(NSConstraintBasedLayout) _setLayoutEngine:]_block_invoke + 492 | |
7 AppKit 0x00007fffb0b99548 -[NSView(NSConstraintBasedLayout) _setLayoutEngine:] + 2977 | |
8 AppKit 0x00007fffb0b8edd6 -[NSView _setSuperview:] + 2109 | |
9 AppKit 0x00007fffb0b8e14d -[NSView addSubview:] + 441 | |
10 AppKit 0x00007fffb0f6bc91 -[NSPageController _setupTransitionHierarchyWithSourceView:frame:destinationView:frame:forDirection:destinationValid:] + 425 | |
11 AppKit 0x00007fffb16b0ce8 -[NSPageController _animateImage:frame:toImage:frame:direction:] + 477 | |
12 AppKit 0x00007fffb16b1632 -[NSPageController _navigateToIndex:animated:] + 1146 | |
13 macOS Utilities 0x000000010232d088 macOS Utilities + 233608 | |
14 macOS Utilities 0x000000010232e4a9 macOS Utilities + 238761 | |
15 macOS Utilities 0x000000010232561c macOS Utilities + 202268 | |
16 macOS Utilities 0x000000010232d0d1 macOS Utilities + 233681 | |
17 macOS Utilities 0x000000010232e4b9 macOS Utilities + 238777 | |
18 macOS Utilities 0x0000000102325653 macOS Utilities + 202323 | |
19 AppKit 0x00007fffb14fd846 +[NSAnimationContext runAnimationGroup:] + 58 | |
20 AppKit 0x00007fffb0bc5bea +[NSAnimationContext runAnimationGroup:completionHandler:] + 85 | |
21 macOS Utilities 0x000000010232a533 macOS Utilities + 222515 | |
22 macOS Utilities 0x000000010232bb5c macOS Utilities + 228188 | |
23 macOS Utilities 0x0000000102374b5a macOS Utilities + 527194 | |
24 macOS Utilities 0x0000000102374e2c macOS Utilities + 527916 | |
25 macOS Utilities 0x0000000102371019 macOS Utilities + 512025 | |
26 macOS Utilities 0x00000001023a428d macOS Utilities + 721549 | |
27 macOS Utilities 0x00000001023a4336 macOS Utilities + 721718 | |
28 macOS Utilities 0x0000000102391bcd macOS Utilities + 646093 | |
29 macOS Utilities 0x00000001023a4361 macOS Utilities + 721761 | |
30 macOS Utilities 0x0000000102306211 macOS Utilities + 74257 | |
31 macOS Utilities 0x000000010230a726 macOS Utilities + 91942 | |
32 macOS Utilities 0x0000000102306b4f macOS Utilities + 76623 | |
33 Foundation 0x00007fffb4b6e5f6 __39-[NSConcreteTask launchWithDictionary:]_block_invoke_2 + 20 | |
34 libdispatch.dylib 0x00007fffc7c9e524 _dispatch_call_block_and_release + 12 | |
35 libdispatch.dylib 0x00007fffc7c958fc _dispatch_client_callout + 8 | |
36 libdispatch.dylib 0x00007fffc7c9786e _dispatch_root_queue_drain + 917 | |
37 libdispatch.dylib 0x00007fffc7c9748c _dispatch_worker_thread3 + 99 | |
38 libsystem_pthread.dylib 0x00007fffc7ee45a2 _pthread_wqthread + 1299 | |
39 libsystem_pthread.dylib 0x00007fffc7ee407d start_wqthread + 13 | |
) | |
2019-05-10 14:42:29.257 macOS Utilities[1658:258116] This application is modifying the autolayout engine from a background thread after the engine was accessed from the main thread. This can lead to engine corruption and weird crashes. | |
Stack:( | |
0 CoreFoundation 0x00007fffb314424b __exceptionPreprocess + 171 | |
1 libobjc.A.dylib 0x00007fffc73e548d objc_exception_throw + 48 | |
2 CoreFoundation 0x00007fffb31c2bfd +[NSException raise:format:] + 205 | |
3 Foundation 0x00007fffb4d78759 _AssertAutolayoutOnAllowedThreadsOnly + 180 | |
4 Foundation 0x00007fffb4b0866f -[NSISEngine withBehaviors:performModifications:] + 31 | |
5 AppKit 0x00007fffb0b8f390 -[NSView(NSConstraintBasedLayout) _withAutomaticEngineOptimizationDisabled:] + 70 | |
6 AppKit 0x00007fffb0b915d1 -[NSView _setWindow:] + 1664 | |
7 AppKit 0x00007fffb0b9cf32 -[NSControl _setWindow:] + 154 | |
8 AppKit 0x00007fffb0b8e161 -[NSView addSubview:] + 461 | |
9 AppKit 0x00007fffb0f6bc91 -[NSPageController _setupTransitionHierarchyWithSourceView:frame:destinationView:frame:forDirection:destinationValid:] + 425 | |
10 AppKit 0x00007fffb16b0ce8 -[NSPageController _animateImage:frame:toImage:frame:direction:] + 477 | |
11 AppKit 0x00007fffb16b1632 -[NSPageController _navigateToIndex:animated:] + 1146 | |
12 macOS Utilities 0x000000010232d088 macOS Utilities + 233608 | |
13 macOS Utilities 0x000000010232e4a9 macOS Utilities + 238761 | |
14 macOS Utilities 0x000000010232561c macOS Utilities + 202268 | |
15 macOS Utilities 0x000000010232d0d1 macOS Utilities + 233681 | |
16 macOS Utilities 0x000000010232e4b9 macOS Utilities + 238777 | |
17 macOS Utilities 0x0000000102325653 macOS Utilities + 202323 | |
18 AppKit 0x00007fffb14fd846 +[NSAnimationContext runAnimationGroup:] + 58 | |
19 AppKit 0x00007fffb0bc5bea +[NSAnimationContext runAnimationGroup:completionHandler:] + 85 | |
20 macOS Utilities 0x000000010232a533 macOS Utilities + 222515 | |
21 macOS Utilities 0x000000010232bb5c macOS Utilities + 228188 | |
22 macOS Utilities 0x0000000102374b5a macOS Utilities + 527194 | |
23 macOS Utilities 0x0000000102374e2c macOS Utilities + 527916 | |
24 macOS Utilities 0x0000000102371019 macOS Utilities + 512025 | |
25 macOS Utilities 0x00000001023a428d macOS Utilities + 721549 | |
26 macOS Utilities 0x00000001023a4336 macOS Utilities + 721718 | |
27 macOS Utilities 0x0000000102391bcd macOS Utilities + 646093 | |
28 macOS Utilities 0x00000001023a4361 macOS Utilities + 721761 | |
29 macOS Utilities 0x0000000102306211 macOS Utilities + 74257 | |
30 macOS Utilities 0x000000010230a726 macOS Utilities + 91942 | |
31 macOS Utilities 0x0000000102306b4f macOS Utilities + 76623 | |
32 Foundation 0x00007fffb4b6e5f6 __39-[NSConcreteTask launchWithDictionary:]_block_invoke_2 + 20 | |
33 libdispatch.dylib 0x00007fffc7c9e524 _dispatch_call_block_and_release + 12 | |
34 libdispatch.dylib 0x00007fffc7c958fc _dispatch_client_callout + 8 | |
35 libdispatch.dylib 0x00007fffc7c9786e _dispatch_root_queue_drain + 917 | |
36 libdispatch.dylib 0x00007fffc7c9748c _dispatch_worker_thread3 + 99 | |
37 libsystem_pthread.dylib 0x00007fffc7ee45a2 _pthread_wqthread + 1299 | |
38 libsystem_pthread.dylib 0x00007fffc7ee407d start_wqthread + 13 | |
) | |
2019-05-10 14:42:29.259 macOS Utilities[1658:258116] This application is modifying the autolayout engine from a background thread after the engine was accessed from the main thread. This can lead to engine corruption and weird crashes. | |
Stack:( | |
0 CoreFoundation 0x00007fffb314424b __exceptionPreprocess + 171 | |
1 libobjc.A.dylib 0x00007fffc73e548d objc_exception_throw + 48 | |
2 CoreFoundation 0x00007fffb31c2bfd +[NSException raise:format:] + 205 | |
3 Foundation 0x00007fffb4d78759 _AssertAutolayoutOnAllowedThreadsOnly + 180 | |
4 Foundation 0x00007fffb4d784a1 -[NSISEngine _optimizeWithoutRebuilding] + 61 | |
5 Foundation 0x00007fffb4b0e7cc -[NSISEngine optimize] + 104 | |
6 Foundation 0x00007fffb4d78d25 -[NSISEngine _optimizeIfNotDisabled] + 58 | |
7 Foundation 0x00007fffb4b12336 -[NSISEngine constraintDidChangeSuchThatMarker:shouldBeReplacedByMarkerPlusDelta:] + 297 | |
8 Foundation 0x00007fffb4b121c3 -[NSISEngine tryToChangeConstraintSuchThatMarker:isReplacedByMarkerPlusDelta:undoHandler:] + 438 | |
9 Foundation 0x00007fffb4b0527c -[NSLayoutConstraint _tryToChangeContainerGeometryWithUndoHandler:] + 488 | |
10 Foundation 0x00007fffb4b01f7a -[NSLayoutConstraint _setSymbolicConstant:constant:] + 514 | |
11 Foundation 0x00007fffb4b01d49 -[NSLayoutConstraint setConstant:] + 68 | |
12 AppKit 0x00007fffb0bda132 -[NSView(NSConstraintBasedLayout) _autoresizingConstraints_frameDidChange] + 333 | |
13 AppKit 0x00007fffb0bd9b71 -[NSView setFrameOrigin:] + 1014 | |
14 AppKit 0x00007fffb0bebef5 -[NSView setFrame:] + 360 | |
15 AppKit 0x00007fffb0f6c3f8 -[NSPageController _setupTransitionHierarchyWithSourceView:frame:destinationView:frame:forDirection:destinationValid:] + 2320 | |
16 AppKit 0x00007fffb16b0ce8 -[NSPageController _animateImage:frame:toImage:frame:direction:] + 477 | |
17 AppKit 0x00007fffb16b1632 -[NSPageController _navigateToIndex:animated:] + 1146 | |
18 macOS Utilities 0x000000010232d088 macOS Utilities + 233608 | |
19 macOS Utilities 0x000000010232e4a9 macOS Utilities + 238761 | |
20 macOS Utilities 0x000000010232561c macOS Utilities + 202268 | |
21 macOS Utilities 0x000000010232d0d1 macOS Utilities + 233681 | |
22 macOS Utilities 0x000000010232e4b9 macOS Utilities + 238777 | |
23 macOS Utilities 0x0000000102325653 macOS Utilities + 202323 | |
24 AppKit 0x00007fffb14fd846 +[NSAnimationContext runAnimationGroup:] + 58 | |
25 AppKit 0x00007fffb0bc5bea +[NSAnimationContext runAnimationGroup:completionHandler:] + 85 | |
26 macOS Utilities 0x000000010232a533 macOS Utilities + 222515 | |
27 macOS Utilities 0x000000010232bb5c macOS Utilities + 228188 | |
28 macOS Utilities 0x0000000102374b5a macOS Utilities + 527194 | |
29 macOS Utilities 0x0000000102374e2c macOS Utilities + 527916 | |
30 macOS Utilities 0x0000000102371019 macOS Utilities + 512025 | |
31 macOS Utilities 0x00000001023a428d macOS Utilities + 721549 | |
32 macOS Utilities 0x00000001023a4336 macOS Utilities + 721718 | |
33 macOS Utilities 0x0000000102391bcd macOS Utilities + 646093 | |
34 macOS Utilities 0x00000001023a4361 macOS Utilities + 721761 | |
35 macOS Utilities 0x0000000102306211 macOS Utilities + 74257 | |
36 macOS Utilities 0x000000010230a726 macOS Utilities + 91942 | |
37 macOS Utilities 0x0000000102306b4f macOS Utilities + 76623 | |
38 Foundation 0x00007fffb4b6e5f6 __39-[NSConcreteTask launchWithDictionary:]_block_invoke_2 + 20 | |
39 libdispatch.dylib 0x00007fffc7c9e524 _dispatch_call_block_and_release + 12 | |
40 libdispatch.dylib 0x00007fffc7c958fc _dispatch_client_callout + 8 | |
41 libdispatch.dylib 0x00007fffc7c9786e _dispatch_root_queue_drain + 917 | |
42 libdispatch.dylib 0x00007fffc7c9748c _dispatch_worker_thread3 + 99 | |
43 libsystem_pthread.dylib 0x00007fffc7ee45a2 _pthread_wqthread + 1299 | |
44 libsystem_pthread.dylib 0x00007fffc7ee407d start_wqthread + 13 | |
) | |
2019-05-10 14:42:29.261 macOS Utilities[1658:258116] This application is modifying the autolayout engine from a background thread after the engine was accessed from the main thread. This can lead to engine corruption and weird crashes. | |
Stack:( | |
0 CoreFoundation 0x00007fffb314424b __exceptionPreprocess + 171 | |
1 libobjc.A.dylib 0x00007fffc73e548d objc_exception_throw + 48 | |
2 CoreFoundation 0x00007fffb31c2bfd +[NSException raise:format:] + 205 | |
3 Foundation 0x00007fffb4d78759 _AssertAutolayoutOnAllowedThreadsOnly + 180 | |
4 Foundation 0x00007fffb4d784a1 -[NSISEngine _optimizeWithoutRebuilding] + 61 | |
5 Foundation 0x00007fffb4b0e7cc -[NSISEngine optimize] + 104 | |
6 Foundation 0x00007fffb4d76528 -[NSISEngine performPendingChangeNotificationsForItem:] + 33 | |
7 AppKit 0x00007fffb0bda1a4 -[NSView(NSConstraintBasedLayout) _autoresizingConstraints_frameDidChange] + 447 | |
8 AppKit 0x00007fffb0bd9b71 -[NSView setFrameOrigin:] + 1014 | |
9 AppKit 0x00007fffb0bebef5 -[NSView setFrame:] + 360 | |
10 AppKit 0x00007fffb0f6c3f8 -[NSPageController _setupTransitionHierarchyWithSourceView:frame:destinationView:frame:forDirection:destinationValid:] + 2320 | |
11 AppKit 0x00007fffb16b0ce8 -[NSPageController _animateImage:frame:toImage:frame:direction:] + 477 | |
12 AppKit 0x00007fffb16b1632 -[NSPageController _navigateToIndex:animated:] + 1146 | |
13 macOS Utilities 0x000000010232d088 macOS Utilities + 233608 | |
14 macOS Utilities 0x000000010232e4a9 macOS Utilities + 238761 | |
15 macOS Utilities 0x000000010232561c macOS Utilities + 202268 | |
16 macOS Utilities 0x000000010232d0d1 macOS Utilities + 233681 | |
17 macOS Utilities 0x000000010232e4b9 macOS Utilities + 238777 | |
18 macOS Utilities 0x0000000102325653 macOS Utilities + 202323 | |
19 AppKit 0x00007fffb14fd846 +[NSAnimationContext runAnimationGroup:] + 58 | |
20 AppKit 0x00007fffb0bc5bea +[NSAnimationContext runAnimationGroup:completionHandler:] + 85 | |
21 macOS Utilities 0x000000010232a533 macOS Utilities + 222515 | |
22 macOS Utilities 0x000000010232bb5c macOS Utilities + 228188 | |
23 macOS Utilities 0x0000000102374b5a macOS Utilities + 527194 | |
24 macOS Utilities 0x0000000102374e2c macOS Utilities + 527916 | |
25 macOS Utilities 0x0000000102371019 macOS Utilities + 512025 | |
26 macOS Utilities 0x00000001023a428d macOS Utilities + 721549 | |
27 macOS Utilities 0x00000001023a4336 macOS Utilities + 721718 | |
28 macOS Utilities 0x0000000102391bcd macOS Utilities + 646093 | |
29 macOS Utilities 0x00000001023a4361 macOS Utilities + 721761 | |
30 macOS Utilities 0x0000000102306211 macOS Utilities + 74257 | |
31 macOS Utilities 0x000000010230a726 macOS Utilities + 91942 | |
32 macOS Utilities 0x0000000102306b4f macOS Utilities + 76623 | |
33 Foundation 0x00007fffb4b6e5f6 __39-[NSConcreteTask launchWithDictionary:]_block_invoke_2 + 20 | |
34 libdispatch.dylib 0x00007fffc7c9e524 _dispatch_call_block_and_release + 12 | |
35 libdispatch.dylib 0x00007fffc7c958fc _dispatch_client_callout + 8 | |
36 libdispatch.dylib 0x00007fffc7c9786e _dispatch_root_queue_drain + 917 | |
37 libdispatch.dylib 0x00007fffc7c9748c _dispatch_worker_thread3 + 99 | |
38 libsystem_pthread.dylib 0x00007fffc7ee45a2 _pthread_wqthread + 1299 | |
39 libsystem_pthread.dylib 0x00007fffc7ee407d start_wqthread + 13 | |
) | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment