-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbluetooth.log
2347 lines (2347 loc) · 460 KB
/
bluetooth.log
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
2020-10-07 15:24:23.895655+0800 0x3c5ea0 Info 0x0 109 launchservicesd: (LaunchServices) [com.apple.launchservices:cas] NotifyAboutLaunchedApplication: {modifiers={LSLaunchAsync=true, LSAdditionalEnvironmentVars={}, LSFrontApplicationSeed=1436, LSLaunchStoppedTemporarily=true, LSLaunchProgressTimeout=30, LSUserActivityCount=0, AddPSNArgument=true, }, session=100016, exitstatusport=xpc object:<mach receive right: 0x7fd06b80c240> { name = 0x33857, right = receive } , pid=53505U, asn=2327096U, command=600, info={ApplicationType="Foreground", CFBundleExecutablePathINode=40539880, LSLaunchBeforeTranslocationLaunchBundlePathDeviceIDKey=16777220, CFBundleExecutablePathDeviceID=771751976, LSBundlePathDeviceID=771751976, LSExecutableFormat="LSExecutableMachOFormat", LSLaunchBeforeTranslocationLaunchBundlePathKey="/Applications/Additional Tools for Xcode 10.1/Hardware/Bluetooth Explorer.app", CFBundlePackageType="APPL", BundleIdentifierLowerCase="com.apple.bluetoothexplorer", LSLaunchBeforeTranslocationLaunchBundlePathINodeKey=13709, LSWantsToComeForwardAtRegistrationTimeKey=true, LSASN={com.apple.coreservices.asn.hi=0U, com.apple.coreservices.asn=UUID:$c9617<…>
2020-10-07 15:24:23.895949+0800 0x3c5ea0 Info 0x0 109 launchservicesd: (LaunchServices) [com.apple.launchservices:cas] -- Creating new LSApplication object for pending application (which we've gotten notified to expect), asn=[ 0x0/0x238238] pid=53505 info={ "ApplicationType"="Foreground", "BundleIdentifierLowerCase"="com.apple.bluetoothexplorer", "CFBundleExecutablePath"="/private/var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/T/AppTranslocation/F4BAC38B-7C33-46C4-818A-436B4DE7B7EC/d/Bluetooth Explorer.app/Contents/MacOS/Bluetooth Explorer", "CFBundleExecutablePathDeviceID"=771751976, "CFBundleExecutablePathINode"=40539880, "CFBundleIdentifier"="com.apple.BluetoothExplorer", "CFBundleName"="Bluetooth Explorer", "CFBundlePackageType"="APPL", "LSASN"=ASN:0x0-0x238238:, "LSBundlePath"="/private/var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/T/AppTranslocation/F4BAC38B-7C33-46C4-818A-436B4DE7B7EC/d/Bluetooth Explorer.app", "LSBundlePathDeviceID"=771751976, "LSBundlePathINode"=13709, "LSDisplayName"="Bluetooth Explorer", "LSExecutableFormat"="LSExecutableMachOFormat", "LSLaunchBeforeTranslocationExecutablePathDeviceID"=16777220, "LSLaunchBeforeTranslocationExecutablePathINode"=15578, "LSLaunchBeforeTranslocationLaunchBundlePathDe<…> portToReceiveExitStatusOn=<decode: missing data>
2020-10-07 15:24:23.897083+0800 0x3c5ea0 Info 0x0 109 launchservicesd: (LaunchServices) [com.apple.launchservices:cas] Setting "CFBundleNameLowerCase" to "bluetooth explorer"
2020-10-07 15:24:23.898157+0800 0x3c5c42 Info 0x0 523 Dock: (LaunchServices) [com.apple.launchservices:cas] Application { "ApplicationType"="Foreground", "BundleIdentifierLowerCase"="com.apple.bluetoothexplorer", "CFBundleExecutablePath"="/private/var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/T/AppTranslocation/F4BAC38B-7C33-46C4-818A-436B4DE7B7EC/d/Bluetooth Explorer.app/Contents/MacOS/Bluetooth Explorer", "CFBundleExecutablePathDeviceID"=771751976, "CFBundleExecutablePathINode"=40539880, "CFBundleIdentifier"="com.apple.BluetoothExplorer", "CFBundleName"="Bluetooth Explorer", "CFBundlePackageType"="APPL", "LSASN"=ASN:0x0-0x238238:, "LSBundlePath"="/private/var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/T/AppTranslocation/F4BAC38B-7C33-46C4-818A-436B4DE7B7EC/d/Bluetooth Explorer.app", "LSBundlePathDeviceID"=771751976, "LSBundlePathINode"=13709, "LSDisplayName"="Bluetooth Explorer", "LSExecutableFormat"="LSExecutableMachOFormat", "LSLaunchBeforeTranslocationExecutablePathDeviceID"=16777220, "LSLaunchBeforeTranslocationExecutablePathINode"=15578, "LSLaunchBeforeTranslocationLaunchBundlePathDeviceIDKey"=16777220, "LSLaunc<…> launched temporarily-stopped, so this application must start it after returning from _LSLaunchApplication().
2020-10-07 15:24:23.999140+0800 0x3c5ea0 Info 0x0 109 launchservicesd: (LaunchServices) [com.apple.launchservices:cas] Setting "LSExecutableFilenameLowerCaseKey" to "bluetooth explorer"
2020-10-07 15:24:23.999198+0800 0x3c5ea0 Info 0x0 109 launchservicesd: (LaunchServices) [com.apple.launchservices:cas] Setting "LSBundlePathLastComponentLowerCaseKey" to "bluetooth explorer.app"
2020-10-07 15:24:24.050620+0800 0x3c5f0e Info 0x0 53505 Bluetooth Explorer: (LaunchServices) [com.apple.launchservices:cas] CFDictionaryRef FindApplicationInformationDictionaryGivenASNUsingLocalCache(LSSessionID, LSASNRef)(), information in shared memory with seed 527 was still valid, so using cached info { "ApplicationType"="Foreground", "BuildMachineOSBuild"="17A405001", "BundleIdentifierLowerCase"="com.apple.bluetoothexplorer", "CanBecomeFrontmost"=true, "CFBundleDevelopmentRegion"="English", "CFBundleExecutable"="Bluetooth Explorer", "CFBundleExecutablePath"="/private/var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/T/AppTranslocation/F4BAC38B-7C33-46C4-818A-436B4DE7B7EC/d/Bluetooth Explorer.app/Contents/MacOS/Bluetooth Explorer", "CFBundleExecutablePathDeviceID"=771751976, "CFBundleExecutablePathINode"=15578, "CFBundleGetInfoString"="6.0.9, Copyright © 2002-2018 Apple Inc. All rights reserved.", "CFBundleHelpBookFolder"="BluetoothHelp", "CFBundleHelpBookName"="Bluetooth Help", "CFBundleIconFile"="AppIcon", "CFBundleIdentifier"="com.apple.BluetoothExplorer", "CFBundleInfoDictionaryVersion"="6.0", "CFBundleName"="Bluetooth Explorer", "CFBundleNameLowerCase"="bluetooth explorer", "CFBundleNum<…>
2020-10-07 15:24:24.056389+0800 0x3c5efd Info 0x0 53505 Bluetooth Explorer: (LaunchServices) [com.apple.launchservices:cas] CFDictionaryRef FindApplicationInformationDictionaryGivenASNUsingLocalCache(LSSessionID, LSASNRef)(), information in shared memory with seed 527 was still valid, so using cached info { "ApplicationType"="Foreground", "BuildMachineOSBuild"="17A405001", "BundleIdentifierLowerCase"="com.apple.bluetoothexplorer", "CanBecomeFrontmost"=true, "CFBundleDevelopmentRegion"="English", "CFBundleExecutable"="Bluetooth Explorer", "CFBundleExecutablePath"="/private/var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/T/AppTranslocation/F4BAC38B-7C33-46C4-818A-436B4DE7B7EC/d/Bluetooth Explorer.app/Contents/MacOS/Bluetooth Explorer", "CFBundleExecutablePathDeviceID"=771751976, "CFBundleExecutablePathINode"=15578, "CFBundleGetInfoString"="6.0.9, Copyright © 2002-2018 Apple Inc. All rights reserved.", "CFBundleHelpBookFolder"="BluetoothHelp", "CFBundleHelpBookName"="Bluetooth Help", "CFBundleIconFile"="AppIcon", "CFBundleIdentifier"="com.apple.BluetoothExplorer", "CFBundleInfoDictionaryVersion"="6.0", "CFBundleName"="Bluetooth Explorer", "CFBundleNameLowerCase"="bluetooth explorer", "CFBundleNum<…>
2020-10-07 15:24:24.448311+0800 0x3c5efd Default 0x0 53505 Bluetooth Explorer: (IOBluetooth) [com.apple.bluetooth:IOBluetoothDeviceInquiry] (IOBluetoothDeviceInquiry - 0x6000000dde30) establishing new XPC Connection for process Bluetooth Explorer
2020-10-07 15:24:24.695629+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:InteropManager] [postStatusNotification] SCOActive: 0
2020-10-07 15:24:24.696253+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:InteropManager] [postStatusNotification] nonHIDConnections: 0
2020-10-07 15:24:24.696289+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:InteropManager] [postStatusNotification] A2DPActive: 0
2020-10-07 15:24:24.697140+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:InteropManager] statusDictionary: {
2020-10-07 15:24:24.697189+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:InteropManager] [updateAggressiveLEState] self.aggressiveLEActivityAllowed = YES
2020-10-07 15:24:24.698024+0800 0x3c5efd Info 0x0 53505 Bluetooth Explorer: (LaunchServices) [com.apple.launchservices:cas] CFDictionaryRef FindApplicationInformationDictionaryGivenASNUsingLocalCache(LSSessionID, LSASNRef)(), information in shared memory with seed 527 was still valid, so using cached info { "ApplicationType"="Foreground", "BuildMachineOSBuild"="17A405001", "BundleIdentifierLowerCase"="com.apple.bluetoothexplorer", "CanBecomeFrontmost"=true, "CFBundleDevelopmentRegion"="English", "CFBundleExecutable"="Bluetooth Explorer", "CFBundleExecutablePath"="/private/var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/T/AppTranslocation/F4BAC38B-7C33-46C4-818A-436B4DE7B7EC/d/Bluetooth Explorer.app/Contents/MacOS/Bluetooth Explorer", "CFBundleExecutablePathDeviceID"=771751976, "CFBundleExecutablePathINode"=15578, "CFBundleGetInfoString"="6.0.9, Copyright © 2002-2018 Apple Inc. All rights reserved.", "CFBundleHelpBookFolder"="BluetoothHelp", "CFBundleHelpBookName"="Bluetooth Help", "CFBundleIconFile"="AppIcon", "CFBundleIdentifier"="com.apple.BluetoothExplorer", "CFBundleInfoDictionaryVersion"="6.0", "CFBundleName"="Bluetooth Explorer", "CFBundleNameLowerCase"="bluetooth explorer", "CFBundleNum<…>
2020-10-07 15:24:24.729697+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:InteropManager] [postStatusNotification] SCOActive: 0
2020-10-07 15:24:24.729739+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:InteropManager] [postStatusNotification] nonHIDConnections: 0
2020-10-07 15:24:24.729773+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:InteropManager] [postStatusNotification] A2DPActive: 0
2020-10-07 15:24:24.730532+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:InteropManager] statusDictionary: {
2020-10-07 15:24:24.730570+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:InteropManager] [updateAggressiveLEState] self.aggressiveLEActivityAllowed = YES
2020-10-07 15:24:24.736798+0800 0x3c5efd Info 0x0 53505 Bluetooth Explorer: (LaunchServices) [com.apple.launchservices:cas] CFDictionaryRef FindApplicationInformationDictionaryGivenASNUsingLocalCache(LSSessionID, LSASNRef)(), information in shared memory with seed 527 was still valid, so using cached info { "ApplicationType"="Foreground", "BuildMachineOSBuild"="17A405001", "BundleIdentifierLowerCase"="com.apple.bluetoothexplorer", "CanBecomeFrontmost"=true, "CFBundleDevelopmentRegion"="English", "CFBundleExecutable"="Bluetooth Explorer", "CFBundleExecutablePath"="/private/var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/T/AppTranslocation/F4BAC38B-7C33-46C4-818A-436B4DE7B7EC/d/Bluetooth Explorer.app/Contents/MacOS/Bluetooth Explorer", "CFBundleExecutablePathDeviceID"=771751976, "CFBundleExecutablePathINode"=15578, "CFBundleGetInfoString"="6.0.9, Copyright © 2002-2018 Apple Inc. All rights reserved.", "CFBundleHelpBookFolder"="BluetoothHelp", "CFBundleHelpBookName"="Bluetooth Help", "CFBundleIconFile"="AppIcon", "CFBundleIdentifier"="com.apple.BluetoothExplorer", "CFBundleInfoDictionaryVersion"="6.0", "CFBundleName"="Bluetooth Explorer", "CFBundleNameLowerCase"="bluetooth explorer", "CFBundleNum<…>
2020-10-07 15:24:24.737571+0800 0x3c5efd Info 0x0 53505 Bluetooth Explorer: (LaunchServices) [com.apple.launchservices:cas] CFDictionaryRef FindApplicationInformationDictionaryGivenASNUsingLocalCache(LSSessionID, LSASNRef)(), information in shared memory with seed 527 was still valid, so using cached info { "ApplicationType"="Foreground", "BuildMachineOSBuild"="17A405001", "BundleIdentifierLowerCase"="com.apple.bluetoothexplorer", "CanBecomeFrontmost"=true, "CFBundleDevelopmentRegion"="English", "CFBundleExecutable"="Bluetooth Explorer", "CFBundleExecutablePath"="/private/var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/T/AppTranslocation/F4BAC38B-7C33-46C4-818A-436B4DE7B7EC/d/Bluetooth Explorer.app/Contents/MacOS/Bluetooth Explorer", "CFBundleExecutablePathDeviceID"=771751976, "CFBundleExecutablePathINode"=15578, "CFBundleGetInfoString"="6.0.9, Copyright © 2002-2018 Apple Inc. All rights reserved.", "CFBundleHelpBookFolder"="BluetoothHelp", "CFBundleHelpBookName"="Bluetooth Help", "CFBundleIconFile"="AppIcon", "CFBundleIdentifier"="com.apple.BluetoothExplorer", "CFBundleInfoDictionaryVersion"="6.0", "CFBundleName"="Bluetooth Explorer", "CFBundleNameLowerCase"="bluetooth explorer", "CFBundleNum<…>
2020-10-07 15:24:24.804774+0800 0x3c5efd Info 0x0 53505 Bluetooth Explorer: (LaunchServices) [com.apple.launchservices:cas] CFDictionaryRef FindApplicationInformationDictionaryGivenASNUsingLocalCache(LSSessionID, LSASNRef)(), information in shared memory with seed 527 was still valid, so using cached info { "ApplicationType"="Foreground", "BuildMachineOSBuild"="17A405001", "BundleIdentifierLowerCase"="com.apple.bluetoothexplorer", "CanBecomeFrontmost"=true, "CFBundleDevelopmentRegion"="English", "CFBundleExecutable"="Bluetooth Explorer", "CFBundleExecutablePath"="/private/var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/T/AppTranslocation/F4BAC38B-7C33-46C4-818A-436B4DE7B7EC/d/Bluetooth Explorer.app/Contents/MacOS/Bluetooth Explorer", "CFBundleExecutablePathDeviceID"=771751976, "CFBundleExecutablePathINode"=15578, "CFBundleGetInfoString"="6.0.9, Copyright © 2002-2018 Apple Inc. All rights reserved.", "CFBundleHelpBookFolder"="BluetoothHelp", "CFBundleHelpBookName"="Bluetooth Help", "CFBundleIconFile"="AppIcon", "CFBundleIdentifier"="com.apple.BluetoothExplorer", "CFBundleInfoDictionaryVersion"="6.0", "CFBundleName"="Bluetooth Explorer", "CFBundleNameLowerCase"="bluetooth explorer", "CFBundleNum<…>
2020-10-07 15:24:25.102452+0800 0x3c5efd Info 0x0 53505 Bluetooth Explorer: (LaunchServices) [com.apple.launchservices:cas] CFDictionaryRef FindApplicationInformationDictionaryGivenASNUsingLocalCache(LSSessionID, LSASNRef)(), information in shared memory with seed 529 was still valid, so using cached info { "ApplicationType"="Foreground", "BuildMachineOSBuild"="17A405001", "BundleIdentifierLowerCase"="com.apple.bluetoothexplorer", "CanBecomeFrontmost"=true, "CFBundleDevelopmentRegion"="English", "CFBundleExecutable"="Bluetooth Explorer", "CFBundleExecutablePath"="/private/var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/T/AppTranslocation/F4BAC38B-7C33-46C4-818A-436B4DE7B7EC/d/Bluetooth Explorer.app/Contents/MacOS/Bluetooth Explorer", "CFBundleExecutablePathDeviceID"=771751976, "CFBundleExecutablePathINode"=15578, "CFBundleGetInfoString"="6.0.9, Copyright © 2002-2018 Apple Inc. All rights reserved.", "CFBundleHelpBookFolder"="BluetoothHelp", "CFBundleHelpBookName"="Bluetooth Help", "CFBundleIconFile"="AppIcon", "CFBundleIdentifier"="com.apple.BluetoothExplorer", "CFBundleInfoDictionaryVersion"="6.0", "CFBundleName"="Bluetooth Explorer", "CFBundleNameLowerCase"="bluetooth explorer", "CFBundleNum<…>
2020-10-07 15:24:25.103548+0800 0x3c5efd Info 0x0 53505 Bluetooth Explorer: (LaunchServices) [com.apple.launchservices:cas] CFDictionaryRef FindApplicationInformationDictionaryGivenASNUsingLocalCache(LSSessionID, LSASNRef)(), information in shared memory with seed 529 was still valid, so using cached info { "ApplicationType"="Foreground", "BuildMachineOSBuild"="17A405001", "BundleIdentifierLowerCase"="com.apple.bluetoothexplorer", "CanBecomeFrontmost"=true, "CFBundleDevelopmentRegion"="English", "CFBundleExecutable"="Bluetooth Explorer", "CFBundleExecutablePath"="/private/var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/T/AppTranslocation/F4BAC38B-7C33-46C4-818A-436B4DE7B7EC/d/Bluetooth Explorer.app/Contents/MacOS/Bluetooth Explorer", "CFBundleExecutablePathDeviceID"=771751976, "CFBundleExecutablePathINode"=15578, "CFBundleGetInfoString"="6.0.9, Copyright © 2002-2018 Apple Inc. All rights reserved.", "CFBundleHelpBookFolder"="BluetoothHelp", "CFBundleHelpBookName"="Bluetooth Help", "CFBundleIconFile"="AppIcon", "CFBundleIdentifier"="com.apple.BluetoothExplorer", "CFBundleInfoDictionaryVersion"="6.0", "CFBundleName"="Bluetooth Explorer", "CFBundleNameLowerCase"="bluetooth explorer", "CFBundleNum<…>
2020-10-07 15:24:25.140754+0800 0x3c5fa4 Activity 0x241160 53506 bluetoothaudiod: (CoreFoundation) Loading Preferences From System CFPrefsD For Search List
2020-10-07 15:24:25.141153+0800 0x3c5e9b Debug 0x241160 133 cfprefsd: (CoreFoundation) [com.apple.cfprefsd:User Defaults Daemon] Process 53506 sent a request related to { bluetoothaudiod, user: root, kCFPreferencesCurrentHost, no container, managed: 1 }
2020-10-07 15:24:25.141158+0800 0x3c5e63 Debug 0x241160 133 cfprefsd: (CoreFoundation) [com.apple.cfprefsd:User Defaults Daemon] Process 53506 sent a request related to { bluetoothaudiod, user: kCFPreferencesAnyUser, kCFPreferencesCurrentHost, no container, managed: 1 }
2020-10-07 15:24:25.141164+0800 0x3c5b34 Debug 0x241160 133 cfprefsd: (CoreFoundation) [com.apple.cfprefsd:User Defaults Daemon] Process 53506 sent a request related to { bluetoothaudiod, user: root, kCFPreferencesCurrentHost, no container, managed: 0 }
2020-10-07 15:24:25.141215+0800 0x3c5e9b Debug 0x241160 133 cfprefsd: (CoreFoundation) [com.apple.cfprefsd:User Defaults Daemon] Process 53506 sent a request related to { bluetoothaudiod, user: root, kCFPreferencesAnyHost, no container, managed: 0 }
2020-10-07 15:24:25.141269+0800 0x3c5e9b Debug 0x241160 133 cfprefsd: (CoreFoundation) [com.apple.cfprefsd:User Defaults Daemon] Process 53506 read data for { bluetoothaudiod, root, kCFPreferencesAnyHost, no container, managed: 0 }, backed by /private/var/root/Library/Preferences/bluetoothaudiod.plist
2020-10-07 15:24:25.141380+0800 0x3c5b34 Debug 0x241160 133 cfprefsd: (CoreFoundation) [com.apple.cfprefsd:User Defaults Daemon] Process 53506 sent a request related to { bluetoothaudiod, user: kCFPreferencesAnyUser, kCFPreferencesCurrentHost, no container, managed: 0 }
2020-10-07 15:24:25.145077+0800 0x3c5fa4 Debug 0x0 53506 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] [unregisterHCI] entry: 0x0
2020-10-07 15:24:25.145108+0800 0x3c5fa4 Debug 0x0 53506 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] [registerHCI] entry (0x0)
2020-10-07 15:24:25.145194+0800 0x3c5fa4 Debug 0x0 53506 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] [registerHCI] exit: 0x0
2020-10-07 15:24:25.145444+0800 0x3c5fa4 Debug 0x0 53506 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] Handle XPC message: <xpc object>
2020-10-07 15:24:25.145541+0800 0x3c5fa4 Debug 0x0 53506 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] Handle XPC message: <xpc object>
2020-10-07 15:24:25.145634+0800 0x3c5fa4 Default 0x0 53506 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] XPC: BTAudioState for (null)
2020-10-07 15:24:25.145761+0800 0x3c5fa4 Default 0x0 53506 bluetoothaudiod: debugInfo:{
2020-10-07 15:24:25.145979+0800 0x3c5fa4 Default 0x0 53506 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] XPC: BTAudioState for (null)
2020-10-07 15:24:25.188896+0800 0x3c5fa4 Debug 0x0 53506 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] Handle XPC message: <xpc object>
2020-10-07 15:24:25.189005+0800 0x3c5fa4 Default 0x0 53506 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] XPC: BTAudioState for (null)
2020-10-07 15:24:25.189063+0800 0x3c5fa4 Default 0x0 53506 bluetoothaudiod: debugInfo:{
2020-10-07 15:24:26.195245+0800 0x3c5fa4 Default 0x0 53506 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] Update activity signaled:0
2020-10-07 15:24:26.195771+0800 0x3c5fa4 Default 0x0 53506 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] Quitting now
2020-10-07 15:24:26.198188+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:InteropManager] [bluetoothAudioNotification] notification: {
2020-10-07 15:24:26.198571+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:InteropManager] [postStatusNotification] SCOActive: 0
2020-10-07 15:24:26.198608+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:InteropManager] [postStatusNotification] nonHIDConnections: 0
2020-10-07 15:24:26.198638+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:InteropManager] [postStatusNotification] A2DPActive: 0
2020-10-07 15:24:26.199481+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:InteropManager] statusDictionary: {
2020-10-07 15:24:26.199524+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:InteropManager] [updateAggressiveLEState] self.aggressiveLEActivityAllowed = YES
2020-10-07 15:24:27.304897+0800 0x3c5fc1 Default 0x0 53507 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] Update activity signaled:0
2020-10-07 15:24:27.305372+0800 0x3c5fc1 Default 0x0 53507 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] Quitting now
2020-10-07 15:24:27.306755+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:InteropManager] [bluetoothAudioNotification] notification: {
2020-10-07 15:24:27.307866+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:InteropManager] [postStatusNotification] SCOActive: 0
2020-10-07 15:24:27.307902+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:InteropManager] [postStatusNotification] nonHIDConnections: 0
2020-10-07 15:24:27.307931+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:InteropManager] [postStatusNotification] A2DPActive: 0
2020-10-07 15:24:27.331548+0800 0x3c5fcc Activity 0x241230 53509 bluetoothaudiod: (CoreFoundation) Loading Preferences From System CFPrefsD For Search List
2020-10-07 15:24:27.331952+0800 0x3c5b34 Debug 0x241230 133 cfprefsd: (CoreFoundation) [com.apple.cfprefsd:User Defaults Daemon] Process 53509 sent a request related to { bluetoothaudiod, user: root, kCFPreferencesCurrentHost, no container, managed: 1 }
2020-10-07 15:24:27.331958+0800 0x3c5e9b Debug 0x241230 133 cfprefsd: (CoreFoundation) [com.apple.cfprefsd:User Defaults Daemon] Process 53509 sent a request related to { bluetoothaudiod, user: root, kCFPreferencesCurrentHost, no container, managed: 0 }
2020-10-07 15:24:27.331963+0800 0x3c5f3b Debug 0x241230 133 cfprefsd: (CoreFoundation) [com.apple.cfprefsd:User Defaults Daemon] Process 53509 sent a request related to { bluetoothaudiod, user: kCFPreferencesAnyUser, kCFPreferencesCurrentHost, no container, managed: 1 }
2020-10-07 15:24:27.331963+0800 0x3c5f0a Debug 0x241230 133 cfprefsd: (CoreFoundation) [com.apple.cfprefsd:User Defaults Daemon] Process 53509 sent a request related to { bluetoothaudiod, user: root, kCFPreferencesAnyHost, no container, managed: 0 }
2020-10-07 15:24:27.332051+0800 0x3c5f0a Debug 0x241230 133 cfprefsd: (CoreFoundation) [com.apple.cfprefsd:User Defaults Daemon] Process 53509 read data for { bluetoothaudiod, root, kCFPreferencesAnyHost, no container, managed: 0 }, backed by /private/var/root/Library/Preferences/bluetoothaudiod.plist
2020-10-07 15:24:27.332101+0800 0x3c5f0a Debug 0x241230 133 cfprefsd: (CoreFoundation) [com.apple.cfprefsd:User Defaults Daemon] Process 53509 sent a request related to { bluetoothaudiod, user: kCFPreferencesAnyUser, kCFPreferencesCurrentHost, no container, managed: 0 }
2020-10-07 15:24:27.335932+0800 0x3c5fcc Debug 0x0 53509 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] [unregisterHCI] entry: 0x0
2020-10-07 15:24:27.335996+0800 0x3c5fcc Debug 0x0 53509 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] [registerHCI] entry (0x0)
2020-10-07 15:24:27.336083+0800 0x3c5fcc Debug 0x0 53509 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] [registerHCI] exit: 0x0
2020-10-07 15:24:27.336336+0800 0x3c5fcc Debug 0x0 53509 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] Handle XPC message: <xpc object>
2020-10-07 15:24:27.336446+0800 0x3c5fcc Debug 0x0 53509 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] Handle XPC message: <xpc object>
2020-10-07 15:24:27.336512+0800 0x3c5fcc Default 0x0 53509 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] XPC: BTAudioState for (null)
2020-10-07 15:24:27.336648+0800 0x3c5fcc Default 0x0 53509 bluetoothaudiod: debugInfo:{
2020-10-07 15:24:27.336865+0800 0x3c5fcc Default 0x0 53509 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] XPC: BTAudioState for (null)
2020-10-07 15:24:27.336928+0800 0x3c5fcc Default 0x0 53509 bluetoothaudiod: debugInfo:{
2020-10-07 15:24:27.337088+0800 0x3c5fcc Debug 0x0 53509 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] Handle XPC message: <xpc object>
2020-10-07 15:24:27.337272+0800 0x3c5fcc Default 0x0 53509 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] XPC: BTAudioState for (null)
2020-10-07 15:24:27.337323+0800 0x3c5fcc Default 0x0 53509 bluetoothaudiod: debugInfo:{
2020-10-07 15:24:28.424562+0800 0x3c5fcc Default 0x0 53509 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] Update activity signaled:0
2020-10-07 15:24:28.450060+0800 0x3c5fda Activity 0x2412a0 53511 bluetoothaudiod: (CoreFoundation) Loading Preferences From System CFPrefsD For Search List
2020-10-07 15:24:28.450530+0800 0x3c5f3b Debug 0x2412a0 133 cfprefsd: (CoreFoundation) [com.apple.cfprefsd:User Defaults Daemon] Process 53511 sent a request related to { bluetoothaudiod, user: root, kCFPreferencesCurrentHost, no container, managed: 1 }
2020-10-07 15:24:28.450533+0800 0x3c5b34 Debug 0x2412a0 133 cfprefsd: (CoreFoundation) [com.apple.cfprefsd:User Defaults Daemon] Process 53511 sent a request related to { bluetoothaudiod, user: root, kCFPreferencesCurrentHost, no container, managed: 0 }
2020-10-07 15:24:28.450532+0800 0x3c5e9b Debug 0x2412a0 133 cfprefsd: (CoreFoundation) [com.apple.cfprefsd:User Defaults Daemon] Process 53511 sent a request related to { bluetoothaudiod, user: kCFPreferencesAnyUser, kCFPreferencesCurrentHost, no container, managed: 1 }
2020-10-07 15:24:28.450602+0800 0x3c5e9b Debug 0x2412a0 133 cfprefsd: (CoreFoundation) [com.apple.cfprefsd:User Defaults Daemon] Process 53511 sent a request related to { bluetoothaudiod, user: root, kCFPreferencesAnyHost, no container, managed: 0 }
2020-10-07 15:24:28.450662+0800 0x3c5e9b Debug 0x2412a0 133 cfprefsd: (CoreFoundation) [com.apple.cfprefsd:User Defaults Daemon] Process 53511 read data for { bluetoothaudiod, root, kCFPreferencesAnyHost, no container, managed: 0 }, backed by /private/var/root/Library/Preferences/bluetoothaudiod.plist
2020-10-07 15:24:28.450720+0800 0x3c5b34 Debug 0x2412a0 133 cfprefsd: (CoreFoundation) [com.apple.cfprefsd:User Defaults Daemon] Process 53511 sent a request related to { bluetoothaudiod, user: kCFPreferencesAnyUser, kCFPreferencesCurrentHost, no container, managed: 0 }
2020-10-07 15:24:28.454863+0800 0x3c5fda Debug 0x0 53511 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] [unregisterHCI] entry: 0x0
2020-10-07 15:24:28.454896+0800 0x3c5fda Debug 0x0 53511 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] [registerHCI] entry (0x0)
2020-10-07 15:24:28.454985+0800 0x3c5fda Debug 0x0 53511 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] [registerHCI] exit: 0x0
2020-10-07 15:24:28.455235+0800 0x3c5fda Debug 0x0 53511 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] Handle XPC message: <xpc object>
2020-10-07 15:24:29.527122+0800 0x3c5fda Default 0x0 53511 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] Quitting now
2020-10-07 15:24:29.528556+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:InteropManager] [bluetoothAudioNotification] notification: {
2020-10-07 15:24:29.529624+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:InteropManager] [postStatusNotification] SCOActive: 0
2020-10-07 15:24:29.529680+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:InteropManager] [postStatusNotification] nonHIDConnections: 0
2020-10-07 15:24:29.529723+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:InteropManager] [postStatusNotification] A2DPActive: 0
2020-10-07 15:24:29.530552+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:InteropManager] statusDictionary: {
2020-10-07 15:24:29.530594+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:InteropManager] [updateAggressiveLEState] self.aggressiveLEActivityAllowed = YES
2020-10-07 15:24:29.556685+0800 0x3c5fe0 Debug 0x0 53512 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] [unregisterHCI] entry: 0x0
2020-10-07 15:24:29.556717+0800 0x3c5fe0 Debug 0x0 53512 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] [registerHCI] entry (0x0)
2020-10-07 15:24:29.556803+0800 0x3c5fe0 Debug 0x0 53512 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] [registerHCI] exit: 0x0
2020-10-07 15:24:29.557112+0800 0x3c5fe0 Debug 0x0 53512 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] Handle XPC message: <xpc object>
2020-10-07 15:24:29.557221+0800 0x3c5fe0 Default 0x0 53512 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] XPC: BTAudioState for (null)
2020-10-07 15:24:29.557357+0800 0x3c5fe0 Default 0x0 53512 bluetoothaudiod: debugInfo:{
2020-10-07 15:24:29.557565+0800 0x3c5fe0 Debug 0x0 53512 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] Handle XPC message: <xpc object>
2020-10-07 15:24:29.557727+0800 0x3c5fe0 Default 0x0 53512 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] XPC: BTAudioState for (null)
2020-10-07 15:24:29.557793+0800 0x3c5fe0 Default 0x0 53512 bluetoothaudiod: debugInfo:{
2020-10-07 15:24:29.557916+0800 0x3c5fe0 Debug 0x0 53512 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] Handle XPC message: <xpc object>
2020-10-07 15:24:29.558058+0800 0x3c5fe0 Debug 0x0 53512 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] Handle XPC message: <xpc object>
2020-10-07 15:24:29.558168+0800 0x3c5fe0 Default 0x0 53512 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] XPC: BTAudioState for (null)
2020-10-07 15:24:29.558225+0800 0x3c5fe0 Default 0x0 53512 bluetoothaudiod: debugInfo:{
2020-10-07 15:24:29.558366+0800 0x3c5fe0 Default 0x0 53512 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] XPC: BTAudioState for (null)
2020-10-07 15:24:29.558414+0800 0x3c5fe0 Default 0x0 53512 bluetoothaudiod: debugInfo:{
2020-10-07 15:24:29.817673+0800 0x3c56f1 Info 0x0 460 loginwindow: (LaunchServices) [com.apple.launchservices:cas] CFDictionaryRef FindApplicationInformationDictionaryGivenASNUsingLocalCache(LSSessionID, LSASNRef)(), information in shared memory with seed 532 was still valid, so using cached info { "ApplicationType"="Foreground", "BuildMachineOSBuild"="17A405001", "BundleIdentifierLowerCase"="com.apple.bluetoothexplorer", "CanBecomeFrontmost"=true, "CFBundleDevelopmentRegion"="English", "CFBundleExecutable"="Bluetooth Explorer", "CFBundleExecutablePath"="/private/var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/T/AppTranslocation/F4BAC38B-7C33-46C4-818A-436B4DE7B7EC/d/Bluetooth Explorer.app/Contents/MacOS/Bluetooth Explorer", "CFBundleExecutablePathDeviceID"=771751976, "CFBundleExecutablePathINode"=15578, "CFBundleGetInfoString"="6.0.9, Copyright © 2002-2018 Apple Inc. All rights reserved.", "CFBundleHelpBookFolder"="BluetoothHelp", "CFBundleHelpBookName"="Bluetooth Help", "CFBundleIconFile"="AppIcon", "CFBundleIdentifier"="com.apple.BluetoothExplorer", "CFBundleInfoDictionaryVersion"="6.0", "CFBundleName"="Bluetooth Explorer", "CFBundleNameLowerCase"="bluetooth explorer", "CFBundleNum<…>
2020-10-07 15:24:30.639492+0800 0x3c5fe0 Default 0x0 53512 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] Update activity signaled:0
2020-10-07 15:24:30.641305+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:InteropManager] [bluetoothAudioNotification] notification: {
2020-10-07 15:24:30.639943+0800 0x3c5fe0 Default 0x0 53512 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] Quitting now
2020-10-07 15:24:30.642400+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:InteropManager] [postStatusNotification] SCOActive: 0
2020-10-07 15:24:30.642438+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:InteropManager] [postStatusNotification] nonHIDConnections: 0
2020-10-07 15:24:30.642470+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:InteropManager] [postStatusNotification] A2DPActive: 0
2020-10-07 15:24:30.643378+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:InteropManager] statusDictionary: {
2020-10-07 15:24:30.643420+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:InteropManager] [updateAggressiveLEState] self.aggressiveLEActivityAllowed = YES
2020-10-07 15:24:30.698724+0800 0x3c600e Debug 0x0 53514 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] Handle XPC message: <xpc object>
2020-10-07 15:24:30.698830+0800 0x3c600e Default 0x0 53514 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] XPC: BTAudioState for (null)
2020-10-07 15:24:30.698886+0800 0x3c600e Default 0x0 53514 bluetoothaudiod: debugInfo:{
2020-10-07 15:24:30.699340+0800 0x3c600e Debug 0x0 53514 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] Handle XPC message: <xpc object>
2020-10-07 15:24:30.699443+0800 0x3c600e Default 0x0 53514 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] XPC: BTAudioState for (null)
2020-10-07 15:24:30.699494+0800 0x3c600e Default 0x0 53514 bluetoothaudiod: debugInfo:{
2020-10-07 15:24:31.758991+0800 0x3c600e Default 0x0 53514 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] Update activity signaled:0
2020-10-07 15:24:31.759452+0800 0x3c600e Default 0x0 53514 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] Quitting now
2020-10-07 15:24:31.761307+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:InteropManager] [bluetoothAudioNotification] notification: {
2020-10-07 15:24:31.763310+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:InteropManager] [postStatusNotification] SCOActive: 0
2020-10-07 15:24:31.763413+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:InteropManager] [postStatusNotification] nonHIDConnections: 0
2020-10-07 15:24:31.763444+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:InteropManager] [postStatusNotification] A2DPActive: 0
2020-10-07 15:24:31.764155+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:InteropManager] statusDictionary: {
2020-10-07 15:24:31.764235+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:InteropManager] [updateAggressiveLEState] self.aggressiveLEActivityAllowed = YES
2020-10-07 15:24:31.787330+0800 0x3c6016 Activity 0x241370 53515 bluetoothaudiod: (CoreFoundation) Loading Preferences From System CFPrefsD For Search List
2020-10-07 15:24:31.787840+0800 0x3c5e9b Debug 0x241370 133 cfprefsd: (CoreFoundation) [com.apple.cfprefsd:User Defaults Daemon] Process 53515 sent a request related to { bluetoothaudiod, user: root, kCFPreferencesCurrentHost, no container, managed: 0 }
2020-10-07 15:24:31.787859+0800 0x3c5f0a Debug 0x241370 133 cfprefsd: (CoreFoundation) [com.apple.cfprefsd:User Defaults Daemon] Process 53515 sent a request related to { bluetoothaudiod, user: kCFPreferencesAnyUser, kCFPreferencesCurrentHost, no container, managed: 1 }
2020-10-07 15:24:31.787922+0800 0x3c5e9a Debug 0x241370 133 cfprefsd: (CoreFoundation) [com.apple.cfprefsd:User Defaults Daemon] Process 53515 sent a request related to { bluetoothaudiod, user: root, kCFPreferencesAnyHost, no container, managed: 0 }
2020-10-07 15:24:32.876187+0800 0x3c6016 Default 0x0 53515 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] Update activity signaled:0
2020-10-07 15:24:32.876767+0800 0x3c6016 Default 0x0 53515 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] Quitting now
2020-10-07 15:24:32.877806+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:InteropManager] [bluetoothAudioNotification] notification: {
2020-10-07 15:24:32.879073+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:InteropManager] [postStatusNotification] SCOActive: 0
2020-10-07 15:24:32.879111+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:InteropManager] [postStatusNotification] nonHIDConnections: 0
2020-10-07 15:24:32.879141+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:InteropManager] [postStatusNotification] A2DPActive: 0
2020-10-07 15:24:32.879883+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:InteropManager] statusDictionary: {
2020-10-07 15:24:32.879924+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:InteropManager] [updateAggressiveLEState] self.aggressiveLEActivityAllowed = YES
2020-10-07 15:24:32.910130+0800 0x3c5f0a Debug 0x2413c0 133 cfprefsd: (CoreFoundation) [com.apple.cfprefsd:User Defaults Daemon] Process 53517 sent a request related to { bluetoothaudiod, user: root, kCFPreferencesAnyHost, no container, managed: 0 }
2020-10-07 15:24:32.910243+0800 0x3c5f0a Debug 0x2413c0 133 cfprefsd: (CoreFoundation) [com.apple.cfprefsd:User Defaults Daemon] Process 53517 read data for { bluetoothaudiod, root, kCFPreferencesAnyHost, no container, managed: 0 }, backed by /private/var/root/Library/Preferences/bluetoothaudiod.plist
2020-10-07 15:24:32.910318+0800 0x3c5f0a Debug 0x2413c0 133 cfprefsd: (CoreFoundation) [com.apple.cfprefsd:User Defaults Daemon] Process 53517 sent a request related to { bluetoothaudiod, user: kCFPreferencesAnyUser, kCFPreferencesCurrentHost, no container, managed: 0 }
2020-10-07 15:24:32.913614+0800 0x3c6021 Debug 0x0 53517 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] [unregisterHCI] entry: 0x0
2020-10-07 15:24:32.913675+0800 0x3c6021 Debug 0x0 53517 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] [registerHCI] entry (0x0)
2020-10-07 15:24:32.913763+0800 0x3c6021 Debug 0x0 53517 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] [registerHCI] exit: 0x0
2020-10-07 15:24:32.914076+0800 0x3c6021 Debug 0x0 53517 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] Handle XPC message: <xpc object>
2020-10-07 15:24:32.914194+0800 0x3c6021 Debug 0x0 53517 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] Handle XPC message: <xpc object>
2020-10-07 15:24:32.914277+0800 0x3c6021 Default 0x0 53517 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] XPC: BTAudioState for (null)
2020-10-07 15:24:32.914410+0800 0x3c6021 Default 0x0 53517 bluetoothaudiod: debugInfo:{
2020-10-07 15:24:32.914596+0800 0x3c6021 Debug 0x0 53517 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] Handle XPC message: <xpc object>
2020-10-07 15:24:32.914673+0800 0x3c6021 Default 0x0 53517 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] XPC: BTAudioState for (null)
2020-10-07 15:24:32.914739+0800 0x3c6021 Default 0x0 53517 bluetoothaudiod: debugInfo:{
2020-10-07 15:24:32.914856+0800 0x3c6021 Debug 0x0 53517 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] Handle XPC message: <xpc object>
2020-10-07 15:24:32.915001+0800 0x3c6021 Default 0x0 53517 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] XPC: BTAudioState for (null)
2020-10-07 15:24:32.915051+0800 0x3c6021 Default 0x0 53517 bluetoothaudiod: debugInfo:{
2020-10-07 15:24:32.915181+0800 0x3c6021 Default 0x0 53517 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] XPC: BTAudioState for (null)
2020-10-07 15:24:32.915227+0800 0x3c6021 Default 0x0 53517 bluetoothaudiod: debugInfo:{
2020-10-07 15:24:33.663831+0800 0x2b1 Activity 0x22bab3 126 bluetoothd: (CoreFoundation) Sending Updated Preferences to System CFPrefsD
2020-10-07 15:24:33.846338+0800 0x2b1 Default 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:bluetoothd] hci event: 0x12. no action
2020-10-07 15:24:33.856021+0800 0x2b1 Default 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:bluetoothd] DaemonHCIEventNotificationHandler_ConnectionComplete - 00
2020-10-07 15:24:33.857527+0800 0x2b1 Debug 0x0 126 bluetoothd: [com.apple.bluetooth:AWD] AWDBluetoothServiceConnectionResult <AWDBluetoothServiceConnectionResult: 0x7fbefff04970> {
2020-10-07 15:24:33.857862+0800 0x2b1 Info 0x0 126 bluetoothd: (WirelessDiagnostics) metric:#I Creating a metric container for metric id: 0xb0010
2020-10-07 15:24:33.860641+0800 0x2b1 Default 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:bluetoothd] hci event: 0x1b. no action
2020-10-07 15:24:33.862514+0800 0x2b1 Activity 0x22bab4 126 bluetoothd: (CoreFoundation) Loading Preferences From System CFPrefsD For Search List
2020-10-07 15:24:33.864718+0800 0xb8d Default 0x0 323 UserEventAgent: (BluetoothUserAgent-Plugin) [com.apple.bluetooth:User Agent] [BTUserEventAgentController devicePublished] count = 1 previousCount = 0
2020-10-07 15:24:33.863133+0800 0x3c6027 Info 0x0 126 bluetoothd: (WirelessDiagnostics) [com.apple.awd.framework:core] core:#I Got trigger metric 0xb0010; Metric: 60 bytes [<private>]
2020-10-07 15:24:33.864751+0800 0xb8d Default 0x0 323 UserEventAgent: (BluetoothUserAgent-Plugin) [com.apple.bluetooth:User Agent] [BTUserEventAgentController devicePublished] seconds of numberConnectedDevices[0] = 9107
2020-10-07 15:24:33.863206+0800 0x3c6027 Debug 0x0 126 bluetoothd: (WirelessDiagnostics) [com.apple.awd.framework:core] core:#D sendExpectedMetric did not find a submission id queue for metric 0xb0010
2020-10-07 15:24:33.864778+0800 0xb8d Default 0x0 323 UserEventAgent: (BluetoothUserAgent-Plugin) [com.apple.bluetooth:User Agent] [BTUserEventAgentController messageTracerEventDriven] devicePublished
2020-10-07 15:24:33.863236+0800 0x3c6027 Debug 0x0 126 bluetoothd: (WirelessDiagnostics) [com.apple.awd.framework:core] core:#D sendExpectedMetric did not find a submission id queue for metric 0xb0010
2020-10-07 15:24:33.861456+0800 0x3c6021 Activity 0x2413c1 53517 bluetoothaudiod: (CoreFoundation) Loading Preferences From System CFPrefsD
2020-10-07 15:24:33.864803+0800 0xb8d Default 0x0 323 UserEventAgent: (BluetoothUserAgent-Plugin) [com.apple.bluetooth:User Agent] [BTUserEventAgentController messageTracerEventDriven]
2020-10-07 15:24:33.863266+0800 0x3c6027 Debug 0x0 126 bluetoothd: (CoreAnalytics) [com.apple.CoreAnalytics:client] Dropping metric 0xb0010 due to whitelist rules
2020-10-07 15:24:33.863293+0800 0x3c6027 Debug 0x0 126 bluetoothd: (WirelessDiagnostics) metric.buffer:#D Added a new metricContainer into buffer. State of the buffer after the add (may have too many metrics):
2020-10-07 15:24:33.864807+0800 0x3c6027 Debug 0x0 126 bluetoothd: (WirelessDiagnostics) metric.buffer:#D - Metric: 0xb0010 60 bytes (1602055473.860 seconds since epoch)
2020-10-07 15:24:33.864837+0800 0x3c6027 Debug 0x0 126 bluetoothd: (WirelessDiagnostics) metric.buffer:#D - Metric: 0xb0010 60 bytes (1602051065.231 seconds since epoch)
2020-10-07 15:24:33.865382+0800 0x3c6027 Debug 0x0 126 bluetoothd: (WirelessDiagnostics) metric.buffer:#D About to erase metric with time 1602051065231ms. Size is 2; fMaxCount is 1
2020-10-07 15:24:33.866428+0800 0x139e Default 0x0 485 UserEventAgent: (BluetoothUserAgent-Plugin) [com.apple.bluetooth:User Agent] [BTUserEventAgentController devicePublished] count = 1 previousCount = 0
2020-10-07 15:24:33.865437+0800 0x3c6027 Debug 0x0 126 bluetoothd: (WirelessDiagnostics) metric.buffer:#D Deleted old metrics. State of the buffer after the delete (should be correct):
2020-10-07 15:24:33.866464+0800 0x139e Default 0x0 485 UserEventAgent: (BluetoothUserAgent-Plugin) [com.apple.bluetooth:User Agent] [BTUserEventAgentController devicePublished] seconds of numberConnectedDevices[0] = 9075
2020-10-07 15:24:33.865664+0800 0x3c6027 Debug 0x0 126 bluetoothd: (WirelessDiagnostics) metric.buffer:#D - Metric: 0xb0010 60 bytes (1602055473.860 seconds since epoch)
2020-10-07 15:24:33.866489+0800 0x139e Default 0x0 485 UserEventAgent: (BluetoothUserAgent-Plugin) [com.apple.bluetooth:User Agent] [BTUserEventAgentController messageTracerEventDriven] devicePublished
2020-10-07 15:24:33.865767+0800 0x3c6027 Info 0x0 126 bluetoothd: (WirelessDiagnostics) [com.apple.awd.framework:core] core:#I Sending a trigger for metric 0xb0010
2020-10-07 15:24:33.866515+0800 0x139e Default 0x0 485 UserEventAgent: (BluetoothUserAgent-Plugin) [com.apple.bluetooth:User Agent] [BTUserEventAgentController messageTracerEventDriven]
2020-10-07 15:24:33.866715+0800 0x3c6027 Info 0x0 126 bluetoothd: (WirelessDiagnostics) [com.apple.awd.framework:metric.buffer] metric.buffer:#I In _trigger with trigger 0xb0010
2020-10-07 15:24:33.866753+0800 0x3c6027 Info 0x0 126 bluetoothd: (WirelessDiagnostics) [com.apple.awd.framework:metric.buffer] metric.buffer:#I Dispatching trigger 0xb0010 for profile 0x13 to metric 0xb0010 after 0 seconds (0 ns).
2020-10-07 15:24:33.866895+0800 0x3c6027 Debug 0x0 126 bluetoothd: (WirelessDiagnostics) [com.apple.awd.framework:core] core:#D setExpectedMetricsForTrigger found 0 queriable metrics for trigger 0xb0010
2020-10-07 15:24:33.866946+0800 0x3c6027 Info 0x0 126 bluetoothd: (WirelessDiagnostics) [com.apple.awd.framework:metric.buffer] metric.buffer:#I Found buffering info for metric 0xb0010: most recent
2020-10-07 15:24:33.866977+0800 0x3c6027 Info 0x0 126 bluetoothd: (WirelessDiagnostics) [com.apple.awd.framework:submitter] client.submitter:#I Sending metric submission message for metric 0xb0010, profid 0x13, Trigger(cid=0xb, trid=0xb0010, sid=1601866978)
2020-10-07 15:24:33.867162+0800 0x3c6027 Info 0x0 126 bluetoothd: (WirelessDiagnostics) [com.apple.awd.framework:submitter] client.submitter:#I Sending done with metrics message for Trigger(cid=0xb, trid=0xb0010, sid=1601866978)
2020-10-07 15:24:33.868124+0800 0xb8d Default 0x0 323 UserEventAgent: (BluetoothUserAgent-Plugin) [com.apple.bluetooth:User Agent] [BTUserEventAgentController messageTracerEventDriven] PowerSource -2.000000 -2.000000
2020-10-07 15:24:33.868164+0800 0xb8d Default 0x0 323 UserEventAgent: (BluetoothUserAgent-Plugin) [com.apple.bluetooth:User Agent] [BTUserEventAgentController messageTracerEventDriven] SystemState 0xE0000300 0xE0000300
2020-10-07 15:24:33.868195+0800 0xb8d Default 0x0 323 UserEventAgent: (BluetoothUserAgent-Plugin) [com.apple.bluetooth:User Agent] [BTUserEventAgentController messageTracerEventDriven] LidStatus 0 0
2020-10-07 15:24:33.868224+0800 0xb8d Default 0x0 323 UserEventAgent: (BluetoothUserAgent-Plugin) [com.apple.bluetooth:User Agent] [BTUserEventAgentController messageTracerEventDriven] BluetoothState 1 1
2020-10-07 15:24:33.868252+0800 0xb8d Default 0x0 323 UserEventAgent: (BluetoothUserAgent-Plugin) [com.apple.bluetooth:User Agent] [BTUserEventAgentController messageTracerEventDriven] StateApple80211 0 0
2020-10-07 15:24:33.868281+0800 0xb8d Default 0x0 323 UserEventAgent: (BluetoothUserAgent-Plugin) [com.apple.bluetooth:User Agent] [BTUserEventAgentController messageTracerEventDriven] FlagsApple80211 0x00000000 0x00000000
2020-10-07 15:24:33.868310+0800 0xb8d Default 0x0 323 UserEventAgent: (BluetoothUserAgent-Plugin) [com.apple.bluetooth:User Agent] [BTUserEventAgentController messageTracerEventDriven] ConnectedDevices 0 1
2020-10-07 15:24:33.868378+0800 0xb8d Default 0x0 323 UserEventAgent: (BluetoothUserAgent-Plugin) [com.apple.bluetooth:User Agent] [BTUserEventAgentController messageTracerEventDriven] ConnectedDeviceTypes 0x00000000 0x00000004
2020-10-07 15:24:33.868458+0800 0xb8d Default 0x0 323 UserEventAgent: (BluetoothUserAgent-Plugin) [com.apple.bluetooth:User Agent] [BTUserEventAgentController messageTracerEventDriven] logged previous event and duration
2020-10-07 15:24:33.868826+0800 0x3c6021 Debug 0x0 53517 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] Handle XPC message: <xpc object>
2020-10-07 15:24:33.869002+0800 0x139e Default 0x0 485 UserEventAgent: (BluetoothUserAgent-Plugin) [com.apple.bluetooth:User Agent] [BTUserEventAgentController messageTracerEventDriven] PowerSource -2.000000 -2.000000
2020-10-07 15:24:33.869039+0800 0x139e Default 0x0 485 UserEventAgent: (BluetoothUserAgent-Plugin) [com.apple.bluetooth:User Agent] [BTUserEventAgentController messageTracerEventDriven] SystemState 0xE0000300 0xE0000300
2020-10-07 15:24:33.869067+0800 0x139e Default 0x0 485 UserEventAgent: (BluetoothUserAgent-Plugin) [com.apple.bluetooth:User Agent] [BTUserEventAgentController messageTracerEventDriven] LidStatus 0 0
2020-10-07 15:24:33.913212+0800 0x3c6021 Debug 0x0 53517 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] Handle XPC message: <xpc object>
2020-10-07 15:24:33.921372+0800 0x3c6021 Debug 0x0 53517 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] [addAllowed] adding: 0x19
2020-10-07 15:24:33.921415+0800 0x3c6021 Debug 0x0 53517 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] [addAllowed] result: 0x0
2020-10-07 15:24:33.921495+0800 0x3c6021 Debug 0x0 53517 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] [init] entry
2020-10-07 15:24:33.921603+0800 0x3c6021 Debug 0x0 53517 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] [listenForNewConnections] Clear our old listeners
2020-10-07 15:24:33.921635+0800 0x3c6021 Debug 0x0 53517 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] [stopListeningForNewConnections]
2020-10-07 15:24:33.921668+0800 0x3c6021 Debug 0x0 53517 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] [listenForNewConnections] PSM: 19
2020-10-07 15:24:33.921937+0800 0x3c6021 Info 0x0 53517 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod.A2DP] Set initiator 0->0
2020-10-07 15:24:33.922343+0800 0x3c6021 Info 0x0 53517 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod.A2DP] Set command timer:5.000000
2020-10-07 15:24:33.922561+0800 0x3c6021 Default 0x0 53517 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod.A2DP] Create endpoints connected devices:1
2020-10-07 15:24:33.923111+0800 0x3c6021 Default 0x0 53517 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod.A2DP] Wifi is on 2.4GHz? 0
2020-10-07 15:24:33.923164+0800 0x3c6021 Debug 0x0 53517 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod.A2DP] Device has AAC fix - enable AAC
2020-10-07 15:24:33.923213+0800 0x3c6021 Debug 0x0 53517 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod.A2DP] AAP Device - enable AAC
2020-10-07 15:24:33.923247+0800 0x3c6021 Info 0x0 53517 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod.A2DP] AAC Enabled
2020-10-07 15:24:33.923516+0800 0x3c6021 Default 0x0 53517 bluetoothaudiod: [init] entry
2020-10-07 15:24:33.923559+0800 0x3c6021 Default 0x0 53517 bluetoothaudiod: [init] virtual address = 0x105388000
2020-10-07 15:24:33.923619+0800 0x3c6021 Debug 0x0 53517 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] dynamicBitpool:0 packetThreshold:5 maxOutstanding:8
2020-10-07 15:24:33.923646+0800 0x3c6021 Debug 0x0 53517 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] [reset]
2020-10-07 15:24:33.923756+0800 0x3c6021 Debug 0x0 53517 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] [newLocalSEP] Created new SEP with endpointID: 1
2020-10-07 15:24:33.923807+0800 0x3c6021 Default 0x0 53517 bluetoothaudiod: [init] entry
2020-10-07 15:24:33.923839+0800 0x3c6021 Default 0x0 53517 bluetoothaudiod: [init] virtual address = 0x1053b9000
2020-10-07 15:24:33.924086+0800 0x3c6021 Debug 0x0 53517 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] dynamicBitpool:0 packetThreshold:5 maxOutstanding:8
2020-10-07 15:24:33.924118+0800 0x3c6021 Debug 0x0 53517 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] [reset]
2020-10-07 15:24:33.924960+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:bluetoothd] -[sdpProcessEvent:] l2capChannelReconfigured.
2020-10-07 15:24:33.924178+0800 0x3c6021 Debug 0x0 53517 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] [newLocalSEP] Created new SEP with endpointID: 2
2020-10-07 15:24:33.925038+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:bluetoothd] -[sdpProcessEvent:] l2capChannelIsNowOpen 0.
2020-10-07 15:24:33.924293+0800 0x3c6021 Debug 0x0 53517 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod.A2DP] [createEndpoints] Remove AAC Max Packet Size Limit
2020-10-07 15:24:33.924617+0800 0x3c6021 Default 0x0 53517 bluetoothaudiod: [init] entry
2020-10-07 15:24:33.924652+0800 0x3c6021 Default 0x0 53517 bluetoothaudiod: [init] virtual address = 0x1053ea000
2020-10-07 15:24:33.924855+0800 0x3c6021 Debug 0x0 53517 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] dynamicBitpool:0 packetThreshold:5 maxOutstanding:8
2020-10-07 15:24:33.924884+0800 0x3c6021 Debug 0x0 53517 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] [reset]
2020-10-07 15:24:33.924961+0800 0x3c6021 Debug 0x0 53517 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] [newLocalSEP] Created new SEP with endpointID: 3
2020-10-07 15:24:33.925982+0800 0x3c6021 Default 0x0 53517 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod.AudioDevice] Device supports AVRCP target
2020-10-07 15:24:33.936659+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:bluetoothd] [SDPManager] mServices = {
2020-10-07 15:24:33.938540+0800 0x3c6021 Debug 0x0 53517 bluetoothaudiod: (CoreFoundation) [com.apple.CFBundle:resources] Language lookup at <private>
2020-10-07 15:24:33.938734+0800 0x3c6021 Debug 0x0 53517 bluetoothaudiod: (CoreFoundation) [com.apple.CFBundle:resources] Resource lookup at <private>
2020-10-07 15:24:33.957394+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:bluetoothd] -[sdpProcessEvent:] newL2CAPData.
2020-10-07 15:24:33.958625+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:bluetoothd] [SDPManager] mServices = {
2020-10-07 15:24:33.969027+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:bluetoothd] -[sdpProcessEvent:] newL2CAPData.
2020-10-07 15:24:33.976658+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:bluetoothd] [SDPManager] mServices = {
2020-10-07 15:24:34.001213+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:bluetoothd] -[sdpProcessEvent:] newL2CAPData.
2020-10-07 15:24:34.002650+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:bluetoothd] [SDPManager] mServices = {
2020-10-07 15:24:34.069970+0800 0x2b1 Default 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:bluetoothd] EVENT: LinkKeyRequest
2020-10-07 15:24:34.070086+0800 0x2b1 Default 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:bluetoothd] [LinkKeyRequest] remote device asking for a link key.
2020-10-07 15:24:34.070195+0800 0x2b1 Default 0x0 126 bluetoothd: [DaemonHandleLinkKeyRequest]
2020-10-07 15:24:34.070262+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:bluetoothd] [GetLinkKeyForAddress] Enter.
2020-10-07 15:24:34.070306+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:bluetoothd] [GetLinkKeyForAddress] local device address: 8c-85-90-3a-38-3b
2020-10-07 15:24:34.070387+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:bluetoothd] [GetLinkKeyForAddress] we have a link key dictionary... {
2020-10-07 15:24:34.070427+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:bluetoothd] [GetLinkKeyForAddress] we have a link key dictionary for this host address...
2020-10-07 15:24:34.070464+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:bluetoothd] [GetLinkKeyForAddress] we have a link key for this device address...
2020-10-07 15:24:34.072381+0800 0x2b1 Default 0x0 126 bluetoothd: [HandleLinkKeyRequest] Exiting with result: 0x0.
2020-10-07 15:24:34.175949+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:LESecurityManager] ***** [BluetoothHCIEventNotificationMessage] kBluetoothHCIEventEncryptionChange
2020-10-07 15:24:34.176205+0800 0x2b1 Default 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:CBPipeManager] CBP: kBluetoothHCIEventEncryptionChange
2020-10-07 15:24:34.176342+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:CBPipeManager] CBP: peerForDevice Joy's Powerbeats³
2020-10-07 15:24:34.176377+0800 0x2b1 Error 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:CBPipeManager] peer doesn't exsit
2020-10-07 15:24:34.176418+0800 0x2b1 Default 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:bluetoothd] EVENT: EncryptionChangeComplete
2020-10-07 15:24:34.183705+0800 0x2b1 Debug 0x0 126 bluetoothd: [com.apple.bluetooth:AWD] AWDBluetoothServiceConnectionResult l2capChannelPublished <AWDBluetoothServiceConnectionResult: 0x7fbeffd607b0> {
2020-10-07 15:24:34.183748+0800 0x2b1 Info 0x0 126 bluetoothd: (WirelessDiagnostics) metric:#I Creating a metric container for metric id: 0xb0010
2020-10-07 15:24:34.183811+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:LESecurityManager] ***** [handleL2CAPChannelOpened] Not SMP L2CAP ChannelID = 41
2020-10-07 15:24:34.183820+0800 0x37a2b2 Info 0x0 126 bluetoothd: (WirelessDiagnostics) [com.apple.awd.framework:core] core:#I Got trigger metric 0xb0010; Metric: 58 bytes [<private>]
2020-10-07 15:24:34.183847+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:CBPipeManager] CBP: l2capChannelPublished called self 0x7fbefff1a500
2020-10-07 15:24:34.183865+0800 0x37a2b2 Debug 0x0 126 bluetoothd: (WirelessDiagnostics) [com.apple.awd.framework:core] core:#D sendExpectedMetric did not find a submission id queue for metric 0xb0010
2020-10-07 15:24:34.183879+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:CBPipeManager] CBP: Not a magnet channel. local cid 0x41, remote cid 0x303
2020-10-07 15:24:34.183895+0800 0x37a2b2 Debug 0x0 126 bluetoothd: (WirelessDiagnostics) [com.apple.awd.framework:core] core:#D sendExpectedMetric did not find a submission id queue for metric 0xb0010
2020-10-07 15:24:34.183910+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:CBPipeManager] CBP: l2capChannelPublished called self 0x7fbefff1a500
2020-10-07 15:24:34.184022+0800 0x37a2b2 Debug 0x0 126 bluetoothd: (CoreAnalytics) [com.apple.CoreAnalytics:client] Dropping metric 0xb0010 due to whitelist rules
2020-10-07 15:24:34.184138+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:CBPipeManager] CBP: Not a magnet channel. local cid 0x41, remote cid 0x303
2020-10-07 15:24:34.184175+0800 0x37a2b2 Debug 0x0 126 bluetoothd: (WirelessDiagnostics) metric.buffer:#D Added a new metricContainer into buffer. State of the buffer after the add (may have too many metrics):
2020-10-07 15:24:34.184208+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:CBXPCManager] l2capChannelPublished called
2020-10-07 15:24:34.184314+0800 0x37a2b2 Debug 0x0 126 bluetoothd: (WirelessDiagnostics) metric.buffer:#D - Metric: 0xb0010 58 bytes (1602055474.183 seconds since epoch)
2020-10-07 15:24:34.184519+0800 0x37a2b2 Debug 0x0 126 bluetoothd: (WirelessDiagnostics) metric.buffer:#D - Metric: 0xb0010 58 bytes (1602055473.915 seconds since epoch)
2020-10-07 15:24:34.184729+0800 0x37a2b2 Debug 0x0 126 bluetoothd: (WirelessDiagnostics) metric.buffer:#D About to erase metric with time 1602055473915ms. Size is 2; fMaxCount is 1
2020-10-07 15:24:34.351537+0800 0x37a2b2 Debug 0x0 126 bluetoothd: (CoreAnalytics) [com.apple.CoreAnalytics:client] Dropping metric 0xb0010 due to whitelist rules
2020-10-07 15:24:34.351566+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:CBPipeManager] CBP: Not a magnet channel. local cid 0x43, remote cid 0x202
2020-10-07 15:24:34.351629+0800 0x37a2b2 Debug 0x0 126 bluetoothd: (WirelessDiagnostics) metric.buffer:#D Added a new metricContainer into buffer. State of the buffer after the add (may have too many metrics):
2020-10-07 15:24:34.351664+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:CBXPCManager] l2capChannelPublished called
2020-10-07 15:24:34.351696+0800 0x37a2b2 Debug 0x0 126 bluetoothd: (WirelessDiagnostics) metric.buffer:#D - Metric: 0xb0010 58 bytes (1602055474.351 seconds since epoch)
2020-10-07 15:24:34.351755+0800 0x37a2b2 Debug 0x0 126 bluetoothd: (WirelessDiagnostics) metric.buffer:#D - Metric: 0xb0010 58 bytes (1602055474.241 seconds since epoch)
2020-10-07 15:24:34.351816+0800 0x37a2b2 Debug 0x0 126 bluetoothd: (WirelessDiagnostics) metric.buffer:#D About to erase metric with time 1602055474241ms. Size is 2; fMaxCount is 1
2020-10-07 15:24:34.351874+0800 0x37a2b2 Debug 0x0 126 bluetoothd: (WirelessDiagnostics) metric.buffer:#D Deleted old metrics. State of the buffer after the delete (should be correct):
2020-10-07 15:24:34.352380+0800 0x37a2b2 Debug 0x0 126 bluetoothd: (WirelessDiagnostics) metric.buffer:#D - Metric: 0xb0010 58 bytes (1602055474.351 seconds since epoch)
2020-10-07 15:24:34.352502+0800 0x37a2b2 Info 0x0 126 bluetoothd: (WirelessDiagnostics) [com.apple.awd.framework:core] core:#I Sending a trigger for metric 0xb0010
2020-10-07 15:24:34.352599+0800 0x37a2b2 Info 0x0 126 bluetoothd: (WirelessDiagnostics) [com.apple.awd.framework:metric.buffer] metric.buffer:#I In _trigger with trigger 0xb0010
2020-10-07 15:24:34.352988+0800 0x37a2b2 Info 0x0 126 bluetoothd: (WirelessDiagnostics) [com.apple.awd.framework:metric.buffer] metric.buffer:#I Dispatching trigger 0xb0010 for profile 0x13 to metric 0xb0010 after 0 seconds (0 ns).
2020-10-07 15:24:34.353178+0800 0x3c6027 Info 0x0 126 bluetoothd: (WirelessDiagnostics) [com.apple.awd.framework:metric.buffer] metric.buffer:#I Found buffering info for metric 0xb0010: most recent
2020-10-07 15:24:34.353177+0800 0x37a2b2 Debug 0x0 126 bluetoothd: (WirelessDiagnostics) [com.apple.awd.framework:core] core:#D setExpectedMetricsForTrigger found 0 queriable metrics for trigger 0xb0010
2020-10-07 15:24:34.353296+0800 0x3c6027 Info 0x0 126 bluetoothd: (WirelessDiagnostics) [com.apple.awd.framework:submitter] client.submitter:#I Sending metric submission message for metric 0xb0010, profid 0x13, Trigger(cid=0xb, trid=0xb0010, sid=1601866982)
2020-10-07 15:24:34.353466+0800 0x3c6027 Info 0x0 126 bluetoothd: (WirelessDiagnostics) [com.apple.awd.framework:submitter] client.submitter:#I Sending done with metrics message for Trigger(cid=0xb, trid=0xb0010, sid=1601866982)
2020-10-07 15:24:34.403331+0800 0x2b1 Debug 0x0 126 bluetoothd: [com.apple.bluetooth:AWD] AWDBluetoothServiceConnectionResult rfcommChannelPublished <AWDBluetoothServiceConnectionResult: 0x7fbefff2c2c0> {
2020-10-07 15:24:34.403376+0800 0x2b1 Info 0x0 126 bluetoothd: (WirelessDiagnostics) metric:#I Creating a metric container for metric id: 0xb0010
2020-10-07 15:24:34.403452+0800 0x3c603e Info 0x0 126 bluetoothd: (WirelessDiagnostics) [com.apple.awd.framework:core] core:#I Got trigger metric 0xb0010; Metric: 58 bytes [<private>]
2020-10-07 15:24:34.403485+0800 0x3c603e Debug 0x0 126 bluetoothd: (WirelessDiagnostics) [com.apple.awd.framework:core] core:#D sendExpectedMetric did not find a submission id queue for metric 0xb0010
2020-10-07 15:24:34.403512+0800 0x3c603e Debug 0x0 126 bluetoothd: (WirelessDiagnostics) [com.apple.awd.framework:core] core:#D sendExpectedMetric did not find a submission id queue for metric 0xb0010
2020-10-07 15:24:34.403561+0800 0x3c603e Debug 0x0 126 bluetoothd: (CoreAnalytics) [com.apple.CoreAnalytics:client] Dropping metric 0xb0010 due to whitelist rules
2020-10-07 15:24:34.403591+0800 0x3c603e Debug 0x0 126 bluetoothd: (WirelessDiagnostics) metric.buffer:#D Added a new metricContainer into buffer. State of the buffer after the add (may have too many metrics):
2020-10-07 15:24:34.403618+0800 0x3c603e Debug 0x0 126 bluetoothd: (WirelessDiagnostics) metric.buffer:#D - Metric: 0xb0010 58 bytes (1602055474.403 seconds since epoch)
2020-10-07 15:24:34.403646+0800 0x3c603e Debug 0x0 126 bluetoothd: (WirelessDiagnostics) metric.buffer:#D - Metric: 0xb0010 58 bytes (1602055474.351 seconds since epoch)
2020-10-07 15:24:34.403672+0800 0x3c603e Debug 0x0 126 bluetoothd: (WirelessDiagnostics) metric.buffer:#D About to erase metric with time 1602055474351ms. Size is 2; fMaxCount is 1
2020-10-07 15:24:34.403696+0800 0x3c603e Debug 0x0 126 bluetoothd: (WirelessDiagnostics) metric.buffer:#D Deleted old metrics. State of the buffer after the delete (should be correct):
2020-10-07 15:24:34.403723+0800 0x3c603e Debug 0x0 126 bluetoothd: (WirelessDiagnostics) metric.buffer:#D - Metric: 0xb0010 58 bytes (1602055474.403 seconds since epoch)
2020-10-07 15:24:34.403771+0800 0x3c603e Info 0x0 126 bluetoothd: (WirelessDiagnostics) [com.apple.awd.framework:core] core:#I Sending a trigger for metric 0xb0010
2020-10-07 15:24:34.403928+0800 0x3c603e Info 0x0 126 bluetoothd: (WirelessDiagnostics) [com.apple.awd.framework:metric.buffer] metric.buffer:#I In _trigger with trigger 0xb0010
2020-10-07 15:24:34.403995+0800 0x3c603e Info 0x0 126 bluetoothd: (WirelessDiagnostics) [com.apple.awd.framework:metric.buffer] metric.buffer:#I Dispatching trigger 0xb0010 for profile 0x13 to metric 0xb0010 after 0 seconds (0 ns).
2020-10-07 15:24:34.404035+0800 0x3c603e Debug 0x0 126 bluetoothd: (WirelessDiagnostics) [com.apple.awd.framework:core] core:#D setExpectedMetricsForTrigger found 0 queriable metrics for trigger 0xb0010
2020-10-07 15:24:34.404062+0800 0x3c6027 Info 0x0 126 bluetoothd: (WirelessDiagnostics) [com.apple.awd.framework:metric.buffer] metric.buffer:#I Found buffering info for metric 0xb0010: most recent
2020-10-07 15:24:34.404281+0800 0x3c6027 Info 0x0 126 bluetoothd: (WirelessDiagnostics) [com.apple.awd.framework:submitter] client.submitter:#I Sending metric submission message for metric 0xb0010, profid 0x13, Trigger(cid=0xb, trid=0xb0010, sid=1601866983)
2020-10-07 15:24:34.404348+0800 0x3c6027 Info 0x0 126 bluetoothd: (WirelessDiagnostics) [com.apple.awd.framework:submitter] client.submitter:#I Sending done with metrics message for Trigger(cid=0xb, trid=0xb0010, sid=1601866983)
2020-10-07 15:24:34.464282+0800 0x2b1 Default 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:CBXPCManager] Address Not Found In Cache, Attempting To Resolve and Re-Search
2020-10-07 15:24:34.464751+0800 0x2b1 Default 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:CBXPCManager] Device NOT Found in Cache, Created NEW UUID (56-f0-ac-55-9b-de/1) CF559C1A-B044-4841-98CA-71BAE30CFC98
2020-10-07 15:24:34.464799+0800 0x2b1 Default 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:ScanManager] No UUID for Address (56-f0-ac-55-9b-de), Need To Create A New UUID and UUIDSet {(
2020-10-07 15:24:34.474123+0800 0xe65 Info 0x0 402 wirelessproxd: [com.apple.bluetooth:WirelessProximity] WPDScanManager - Notifying Client About Discovered Device: Client ( 6A47A87A-3E1C-4AAB-B546-8D43EE06F906: sharingd (547) (WPPairing)) - UUID (6A47A87A-3E1C-4AAB-B546-8D43EE06F906)
2020-10-07 15:24:34.474255+0800 0xe65 Info 0x0 402 wirelessproxd: [com.apple.bluetooth:WirelessProximity] Telling process sharingd about discovered device of type 7 with data <4c000719 01032000 fa8f8601 00e5b9bb 211e2d18 586fc471 6f2e16f7 55>
2020-10-07 15:24:34.481505+0800 0x3c334a Debug 0x0 129 AirPlayXPCHelper: (BluetoothAudio) [com.apple.bluetooth:BTFigE] Found LE device with address 56-f0-ac-55-9b-de paired:0 inCase:0
2020-10-07 15:24:34.481569+0800 0x3c334a Debug 0x0 129 AirPlayXPCHelper: (BluetoothAudio) [com.apple.bluetooth:BTFigE] Didn't find an entry for 56-f0-ac-55-9b-de
2020-10-07 15:24:36.065218+0800 0x337 Default 0x0 77 mediaremoted: [com.apple.amp.mediaremote:MediaRemote] Client <MRDMediaRemoteClient 0x7faa97307140, bundleIdentifier = bluetoothaudiod, pid = 53517> invalidated.
2020-10-07 15:24:36.065694+0800 0x337 Default 0x0 77 mediaremoted: [com.apple.amp.mediaremote:MediaRemote] Removing client <MRDMediaRemoteClient 0x7faa97307140, bundleIdentifier = bluetoothaudiod, pid = 53517>
2020-10-07 15:24:36.066198+0800 0x337 Default 0x0 77 mediaremoted: [com.apple.amp.mediaremote:MediaRemote] [AVRoutingServer] Setting (null) to application picked routes for client <MRDMediaRemoteClient 0x7faa97307140, bundleIdentifier = bluetoothaudiod, pid = 53517>
2020-10-07 15:24:36.066274+0800 0x337 Debug 0x0 77 mediaremoted: [com.apple.amp.mediaremote:MediaRemote] [MRDOSXNowPlayingDataSource] bluetoothaudiod-53517 invalidated, re-evaluating nowPlayingApp
2020-10-07 15:24:36.070784+0800 0x3c6125 Activity 0x241490 53518 bluetoothaudiod: (CoreFoundation) Loading Preferences From System CFPrefsD For Search List
2020-10-07 15:24:36.071200+0800 0x3c5f0a Debug 0x241490 133 cfprefsd: (CoreFoundation) [com.apple.cfprefsd:User Defaults Daemon] Process 53518 sent a request related to { bluetoothaudiod, user: root, kCFPreferencesCurrentHost, no container, managed: 1 }
2020-10-07 15:24:36.071201+0800 0x3c5e9a Debug 0x241490 133 cfprefsd: (CoreFoundation) [com.apple.cfprefsd:User Defaults Daemon] Process 53518 sent a request related to { bluetoothaudiod, user: kCFPreferencesAnyUser, kCFPreferencesCurrentHost, no container, managed: 1 }
2020-10-07 15:24:36.071265+0800 0x3c5f0a Debug 0x241490 133 cfprefsd: (CoreFoundation) [com.apple.cfprefsd:User Defaults Daemon] Process 53518 sent a request related to { bluetoothaudiod, user: root, kCFPreferencesCurrentHost, no container, managed: 0 }
2020-10-07 15:24:36.071269+0800 0x3c5e9a Debug 0x241490 133 cfprefsd: (CoreFoundation) [com.apple.cfprefsd:User Defaults Daemon] Process 53518 sent a request related to { bluetoothaudiod, user: root, kCFPreferencesAnyHost, no container, managed: 0 }
2020-10-07 15:24:36.071367+0800 0x3c5e9a Debug 0x241490 133 cfprefsd: (CoreFoundation) [com.apple.cfprefsd:User Defaults Daemon] Process 53518 read data for { bluetoothaudiod, root, kCFPreferencesAnyHost, no container, managed: 0 }, backed by /private/var/root/Library/Preferences/bluetoothaudiod.plist
2020-10-07 15:24:36.071477+0800 0x3c5f3b Debug 0x241490 133 cfprefsd: (CoreFoundation) [com.apple.cfprefsd:User Defaults Daemon] Process 53518 sent a request related to { bluetoothaudiod, user: kCFPreferencesAnyUser, kCFPreferencesCurrentHost, no container, managed: 0 }
2020-10-07 15:24:36.075550+0800 0x3c6125 Activity 0x241491 53518 bluetoothaudiod: (CoreFoundation) Loading Preferences From System CFPrefsD
2020-10-07 15:24:36.083792+0800 0x3c6125 Activity 0x241492 53518 bluetoothaudiod: (CoreFoundation) Loading Preferences From System CFPrefsD For Search List
2020-10-07 15:24:36.085055+0800 0x3c6125 Debug 0x0 53518 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] [unregisterHCI] entry: 0x0
2020-10-07 15:24:36.085084+0800 0x3c6125 Debug 0x0 53518 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] [registerHCI] entry (0x0)
2020-10-07 15:24:36.085168+0800 0x3c6125 Debug 0x0 53518 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] [registerHCI] exit: 0x0
2020-10-07 15:24:36.085445+0800 0x3c6125 Debug 0x0 53518 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] Handle XPC message: <xpc object>
2020-10-07 15:24:36.085557+0800 0x3c6125 Debug 0x0 53518 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] Handle XPC message: <xpc object>
2020-10-07 15:24:36.085646+0800 0x3c6125 Default 0x0 53518 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] XPC: BTAudioState for (null)
2020-10-07 15:24:36.085751+0800 0x3c6125 Default 0x0 53518 bluetoothaudiod: debugInfo:{
2020-10-07 15:24:36.085954+0800 0x3c6125 Debug 0x0 53518 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] Handle XPC message: <xpc object>
2020-10-07 15:24:36.086009+0800 0x3c6125 Default 0x0 53518 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] XPC: BTAudioState for (null)
2020-10-07 15:24:36.086062+0800 0x3c6125 Default 0x0 53518 bluetoothaudiod: debugInfo:{
2020-10-07 15:24:36.086226+0800 0x3c6125 Debug 0x0 53518 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] Handle XPC message: <xpc object>
2020-10-07 15:24:36.086371+0800 0x3c6125 Default 0x0 53518 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] XPC: BTAudioState for (null)
2020-10-07 15:24:36.086420+0800 0x3c6125 Default 0x0 53518 bluetoothaudiod: debugInfo:{
2020-10-07 15:24:36.086531+0800 0x3c6125 Debug 0x0 53518 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] Handle XPC message: <xpc object>
2020-10-07 15:24:36.086628+0800 0x3c6125 Default 0x0 53518 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] XPC: BTAudioState for (null)
2020-10-07 15:24:36.086674+0800 0x3c6125 Default 0x0 53518 bluetoothaudiod: debugInfo:{
2020-10-07 15:24:36.086798+0800 0x3c6125 Debug 0x0 53518 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] Handle XPC message: <xpc object>
2020-10-07 15:24:36.086871+0800 0x3c6125 Default 0x0 53518 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] XPC: BTAudioState for (null)
2020-10-07 15:24:36.086916+0800 0x3c6125 Default 0x0 53518 bluetoothaudiod: debugInfo:{
2020-10-07 15:24:36.087043+0800 0x3c6125 Debug 0x0 53518 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] Handle XPC message: <xpc object>
2020-10-07 15:24:36.087123+0800 0x3c6125 Default 0x0 53518 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] XPC: BTAudioState for (null)
2020-10-07 15:24:36.087169+0800 0x3c6125 Default 0x0 53518 bluetoothaudiod: debugInfo:{
2020-10-07 15:24:36.087292+0800 0x3c6125 Debug 0x0 53518 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] Handle XPC message: <xpc object>
2020-10-07 15:24:36.087345+0800 0x3c6125 Default 0x0 53518 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] XPC: BTAudioState for (null)
2020-10-07 15:24:36.087389+0800 0x3c6125 Default 0x0 53518 bluetoothaudiod: debugInfo:{
2020-10-07 15:24:36.087551+0800 0x3c6125 Default 0x0 53518 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] XPC: BTAudioState for (null)
2020-10-07 15:24:36.087601+0800 0x3c6125 Default 0x0 53518 bluetoothaudiod: debugInfo:{
2020-10-07 15:24:37.211832+0800 0x3c6153 Activity 0x2414f1 53520 bluetoothaudiod: (CoreFoundation) Loading Preferences From System CFPrefsD
2020-10-07 15:24:37.219848+0800 0x3c6153 Activity 0x2414f2 53520 bluetoothaudiod: (CoreFoundation) Loading Preferences From System CFPrefsD For Search List
2020-10-07 15:24:37.221560+0800 0x3c6153 Debug 0x0 53520 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] [unregisterHCI] entry: 0x0
2020-10-07 15:24:37.221589+0800 0x3c6153 Debug 0x0 53520 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] [registerHCI] entry (0x0)
2020-10-07 15:24:37.221672+0800 0x3c6153 Debug 0x0 53520 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] [registerHCI] exit: 0x0
2020-10-07 15:24:37.221931+0800 0x3c6153 Debug 0x0 53520 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] Handle XPC message: <xpc object>
2020-10-07 15:24:37.222040+0800 0x3c6153 Debug 0x0 53520 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] Handle XPC message: <xpc object>
2020-10-07 15:24:37.222109+0800 0x3c6153 Default 0x0 53520 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] XPC: BTAudioState for (null)
2020-10-07 15:24:37.222217+0800 0x3c6153 Default 0x0 53520 bluetoothaudiod: debugInfo:{
2020-10-07 15:24:37.222418+0800 0x3c6153 Default 0x0 53520 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] XPC: BTAudioState for (null)
2020-10-07 15:24:37.222467+0800 0x3c6153 Default 0x0 53520 bluetoothaudiod: debugInfo:{
2020-10-07 15:24:37.356499+0800 0x3c6153 Debug 0x0 53520 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] Handle XPC message: <xpc object>
2020-10-07 15:24:37.356638+0800 0x3c6153 Default 0x0 53520 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] XPC: BTAudioState for (null)
2020-10-07 15:24:37.356691+0800 0x3c6153 Default 0x0 53520 bluetoothaudiod: debugInfo:{
2020-10-07 15:24:37.417818+0800 0x3c6153 Debug 0x0 53520 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] Handle XPC message: <xpc object>
2020-10-07 15:24:37.417931+0800 0x3c6153 Default 0x0 53520 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] XPC: BTAudioState for (null)
2020-10-07 15:24:37.417986+0800 0x3c6153 Default 0x0 53520 bluetoothaudiod: debugInfo:{
2020-10-07 15:24:38.034989+0800 0x3c6166 Debug 0x0 129 AirPlayXPCHelper: (BluetoothAudio) [com.apple.bluetooth:BTFigE] We have no endpoints
2020-10-07 15:24:38.035208+0800 0x3c6166 Debug 0x0 129 AirPlayXPCHelper: (BluetoothAudio) [com.apple.bluetooth:BTFigE] We have no endpoints
2020-10-07 15:24:38.035402+0800 0x3c6166 Debug 0x0 129 AirPlayXPCHelper: (BluetoothAudio) [com.apple.bluetooth:BTFigE] We have no endpoints
2020-10-07 15:24:38.035749+0800 0x3c6166 Debug 0x0 129 AirPlayXPCHelper: (BluetoothAudio) [com.apple.bluetooth:BTFigE] We have no endpoints
2020-10-07 15:24:38.035867+0800 0x3c6166 Debug 0x0 129 AirPlayXPCHelper: (BluetoothAudio) [com.apple.bluetooth:BTFigE] We have no endpoints
2020-10-07 15:24:38.036016+0800 0x3c6166 Debug 0x0 129 AirPlayXPCHelper: (BluetoothAudio) [com.apple.bluetooth:BTFigE] We have no endpoints
2020-10-07 15:24:38.036221+0800 0x3c6166 Debug 0x0 129 AirPlayXPCHelper: (BluetoothAudio) [com.apple.bluetooth:BTFigE] We have no endpoints
2020-10-07 15:24:38.310369+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:InteropManager] [bluetoothAudioNotification] notification: {
2020-10-07 15:24:38.310944+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:InteropManager] [postStatusNotification] SCOActive: 0
2020-10-07 15:24:38.310980+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:InteropManager] [postStatusNotification] nonHIDConnections: 1
2020-10-07 15:24:38.311027+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:InteropManager] [postStatusNotification] A2DPActive: 0
2020-10-07 15:24:38.312191+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:InteropManager] statusDictionary: {
2020-10-07 15:24:38.312231+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:InteropManager] [updateAggressiveLEState] self.aggressiveLEActivityAllowed = YES
2020-10-07 15:24:38.306921+0800 0x3c6153 Default 0x0 53520 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] Update activity signaled:0
2020-10-07 15:24:38.307137+0800 0x3c6153 Default 0x0 53520 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] Quitting now
2020-10-07 15:24:38.331690+0800 0x3c61a1 Activity 0x241560 53521 bluetoothaudiod: (CoreFoundation) Loading Preferences From System CFPrefsD For Search List
2020-10-07 15:24:38.332220+0800 0x3c5e9b Debug 0x241560 133 cfprefsd: (CoreFoundation) [com.apple.cfprefsd:User Defaults Daemon] Process 53521 sent a request related to { bluetoothaudiod, user: root, kCFPreferencesCurrentHost, no container, managed: 0 }
2020-10-07 15:24:38.332234+0800 0x3c5e9a Debug 0x241560 133 cfprefsd: (CoreFoundation) [com.apple.cfprefsd:User Defaults Daemon] Process 53521 sent a request related to { bluetoothaudiod, user: root, kCFPreferencesAnyHost, no container, managed: 0 }
2020-10-07 15:24:38.332278+0800 0x3c5b34 Debug 0x241560 133 cfprefsd: (CoreFoundation) [com.apple.cfprefsd:User Defaults Daemon] Process 53521 sent a request related to { bluetoothaudiod, user: kCFPreferencesAnyUser, kCFPreferencesCurrentHost, no container, managed: 1 }
2020-10-07 15:24:38.332345+0800 0x3c5e9a Debug 0x241560 133 cfprefsd: (CoreFoundation) [com.apple.cfprefsd:User Defaults Daemon] Process 53521 read data for { bluetoothaudiod, root, kCFPreferencesAnyHost, no container, managed: 0 }, backed by /private/var/root/Library/Preferences/bluetoothaudiod.plist
2020-10-07 15:24:38.332511+0800 0x3c5f3b Debug 0x241560 133 cfprefsd: (CoreFoundation) [com.apple.cfprefsd:User Defaults Daemon] Process 53521 sent a request related to { bluetoothaudiod, user: root, kCFPreferencesCurrentHost, no container, managed: 1 }
2020-10-07 15:24:38.332541+0800 0x3c5e9b Debug 0x241560 133 cfprefsd: (CoreFoundation) [com.apple.cfprefsd:User Defaults Daemon] Process 53521 sent a request related to { bluetoothaudiod, user: kCFPreferencesAnyUser, kCFPreferencesCurrentHost, no container, managed: 0 }
2020-10-07 15:24:38.337260+0800 0x3c61a1 Activity 0x241561 53521 bluetoothaudiod: (CoreFoundation) Loading Preferences From System CFPrefsD
2020-10-07 15:24:38.346191+0800 0x3c61a1 Activity 0x241562 53521 bluetoothaudiod: (CoreFoundation) Loading Preferences From System CFPrefsD For Search List
2020-10-07 15:24:38.347702+0800 0x3c61a1 Debug 0x0 53521 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] [unregisterHCI] entry: 0x0
2020-10-07 15:24:39.447897+0800 0x3c61a1 Default 0x0 53521 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] Update activity signaled:0
2020-10-07 15:24:39.448097+0800 0x3c61a1 Default 0x0 53521 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] Quitting now
2020-10-07 15:24:39.474013+0800 0x3c61b4 Activity 0x2415c0 53523 bluetoothaudiod: (CoreFoundation) Loading Preferences From System CFPrefsD For Search List
2020-10-07 15:24:39.474528+0800 0x3c5f3b Debug 0x2415c0 133 cfprefsd: (CoreFoundation) [com.apple.cfprefsd:User Defaults Daemon] Process 53523 sent a request related to { bluetoothaudiod, user: kCFPreferencesAnyUser, kCFPreferencesCurrentHost, no container, managed: 1 }
2020-10-07 15:24:39.474530+0800 0x3c5e9b Debug 0x2415c0 133 cfprefsd: (CoreFoundation) [com.apple.cfprefsd:User Defaults Daemon] Process 53523 sent a request related to { bluetoothaudiod, user: root, kCFPreferencesCurrentHost, no container, managed: 0 }
2020-10-07 15:24:39.474541+0800 0x3c5e9a Debug 0x2415c0 133 cfprefsd: (CoreFoundation) [com.apple.cfprefsd:User Defaults Daemon] Process 53523 sent a request related to { bluetoothaudiod, user: root, kCFPreferencesAnyHost, no container, managed: 0 }
2020-10-07 15:24:39.474590+0800 0x3c5e9a Debug 0x2415c0 133 cfprefsd: (CoreFoundation) [com.apple.cfprefsd:User Defaults Daemon] Process 53523 read data for { bluetoothaudiod, root, kCFPreferencesAnyHost, no container, managed: 0 }, backed by /private/var/root/Library/Preferences/bluetoothaudiod.plist
2020-10-07 15:24:39.474626+0800 0x3c5b34 Debug 0x2415c0 133 cfprefsd: (CoreFoundation) [com.apple.cfprefsd:User Defaults Daemon] Process 53523 sent a request related to { bluetoothaudiod, user: root, kCFPreferencesCurrentHost, no container, managed: 1 }
2020-10-07 15:24:39.474693+0800 0x3c5b34 Debug 0x2415c0 133 cfprefsd: (CoreFoundation) [com.apple.cfprefsd:User Defaults Daemon] Process 53523 sent a request related to { bluetoothaudiod, user: kCFPreferencesAnyUser, kCFPreferencesCurrentHost, no container, managed: 0 }
2020-10-07 15:24:39.479403+0800 0x3c61b4 Activity 0x2415c1 53523 bluetoothaudiod: (CoreFoundation) Loading Preferences From System CFPrefsD
2020-10-07 15:24:39.487789+0800 0x3c61b4 Activity 0x2415c2 53523 bluetoothaudiod: (CoreFoundation) Loading Preferences From System CFPrefsD For Search List
2020-10-07 15:24:39.489334+0800 0x3c61b4 Debug 0x0 53523 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] [unregisterHCI] entry: 0x0
2020-10-07 15:24:39.489363+0800 0x3c61b4 Debug 0x0 53523 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] [registerHCI] entry (0x0)
2020-10-07 15:24:39.489441+0800 0x3c61b4 Debug 0x0 53523 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] [registerHCI] exit: 0x0
2020-10-07 15:24:39.489682+0800 0x3c61b4 Debug 0x0 53523 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] Handle XPC message: <xpc object>
2020-10-07 15:24:39.489834+0800 0x3c61b4 Debug 0x0 53523 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] Handle XPC message: <xpc object>
2020-10-07 15:24:39.489902+0800 0x3c61b4 Default 0x0 53523 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] XPC: BTAudioState for (null)
2020-10-07 15:24:39.490005+0800 0x3c61b4 Default 0x0 53523 bluetoothaudiod: debugInfo:{
2020-10-07 15:24:39.490193+0800 0x3c61b4 Debug 0x0 53523 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] Handle XPC message: <xpc object>
2020-10-07 15:24:39.490262+0800 0x3c61b4 Default 0x0 53523 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] XPC: BTAudioState for (null)
2020-10-07 15:24:39.490317+0800 0x3c61b4 Default 0x0 53523 bluetoothaudiod: debugInfo:{
2020-10-07 15:24:39.490445+0800 0x3c61b4 Debug 0x0 53523 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] Handle XPC message: <xpc object>
2020-10-07 15:24:39.490581+0800 0x3c61b4 Default 0x0 53523 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] XPC: BTAudioState for (null)
2020-10-07 15:24:39.490629+0800 0x3c61b4 Default 0x0 53523 bluetoothaudiod: debugInfo:{
2020-10-07 15:24:39.490800+0800 0x3c61b4 Default 0x0 53523 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] XPC: BTAudioState for (null)
2020-10-07 15:24:39.490849+0800 0x3c61b4 Default 0x0 53523 bluetoothaudiod: debugInfo:{
2020-10-07 15:24:40.586804+0800 0x3c61b4 Default 0x0 53523 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] Update activity signaled:0
2020-10-07 15:24:40.589033+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:InteropManager] [bluetoothAudioNotification] notification: {
2020-10-07 15:24:40.590327+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:InteropManager] [postStatusNotification] SCOActive: 0
2020-10-07 15:24:40.590367+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:InteropManager] [postStatusNotification] nonHIDConnections: 1
2020-10-07 15:24:40.590400+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:InteropManager] [postStatusNotification] A2DPActive: 0
2020-10-07 15:24:40.587007+0800 0x3c61b4 Default 0x0 53523 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] Quitting now
2020-10-07 15:24:40.592274+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:InteropManager] statusDictionary: {
2020-10-07 15:24:40.592315+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:InteropManager] [updateAggressiveLEState] self.aggressiveLEActivityAllowed = YES
2020-10-07 15:24:40.617068+0800 0x3c61be Activity 0x241600 53524 bluetoothaudiod: (CoreFoundation) Loading Preferences From System CFPrefsD For Search List
2020-10-07 15:24:40.617710+0800 0x3c5e9b Debug 0x241600 133 cfprefsd: (CoreFoundation) [com.apple.cfprefsd:User Defaults Daemon] Process 53524 sent a request related to { bluetoothaudiod, user: root, kCFPreferencesAnyHost, no container, managed: 0 }
2020-10-07 15:24:40.617800+0800 0x3c5e9b Debug 0x241600 133 cfprefsd: (CoreFoundation) [com.apple.cfprefsd:User Defaults Daemon] Process 53524 read data for { bluetoothaudiod, root, kCFPreferencesAnyHost, no container, managed: 0 }, backed by /private/var/root/Library/Preferences/bluetoothaudiod.plist
2020-10-07 15:24:40.617861+0800 0x3c5b34 Debug 0x241600 133 cfprefsd: (CoreFoundation) [com.apple.cfprefsd:User Defaults Daemon] Process 53524 sent a request related to { bluetoothaudiod, user: root, kCFPreferencesCurrentHost, no container, managed: 1 }
2020-10-07 15:24:40.618040+0800 0x3c5e9a Debug 0x241600 133 cfprefsd: (CoreFoundation) [com.apple.cfprefsd:User Defaults Daemon] Process 53524 sent a request related to { bluetoothaudiod, user: root, kCFPreferencesCurrentHost, no container, managed: 0 }
2020-10-07 15:24:40.618056+0800 0x3c5f3b Debug 0x241600 133 cfprefsd: (CoreFoundation) [com.apple.cfprefsd:User Defaults Daemon] Process 53524 sent a request related to { bluetoothaudiod, user: kCFPreferencesAnyUser, kCFPreferencesCurrentHost, no container, managed: 1 }
2020-10-07 15:24:40.618481+0800 0x3c5f3b Debug 0x241600 133 cfprefsd: (CoreFoundation) [com.apple.cfprefsd:User Defaults Daemon] Process 53524 sent a request related to { bluetoothaudiod, user: kCFPreferencesAnyUser, kCFPreferencesCurrentHost, no container, managed: 0 }
2020-10-07 15:24:40.637875+0800 0x3c61be Debug 0x0 53524 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] [unregisterHCI] entry: 0x0
2020-10-07 15:24:40.637940+0800 0x3c61be Debug 0x0 53524 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] [registerHCI] entry (0x0)
2020-10-07 15:24:40.638023+0800 0x3c61be Debug 0x0 53524 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] [registerHCI] exit: 0x0
2020-10-07 15:24:40.638252+0800 0x3c61be Debug 0x0 53524 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] Handle XPC message: <xpc object>
2020-10-07 15:24:40.638369+0800 0x3c61be Default 0x0 53524 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] XPC: BTAudioState for (null)
2020-10-07 15:24:40.638475+0800 0x3c61be Default 0x0 53524 bluetoothaudiod: debugInfo:{
2020-10-07 15:24:40.638671+0800 0x3c61be Debug 0x0 53524 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] Handle XPC message: <xpc object>
2020-10-07 15:24:40.638833+0800 0x3c61be Default 0x0 53524 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] XPC: BTAudioState for (null)
2020-10-07 15:24:40.638888+0800 0x3c61be Default 0x0 53524 bluetoothaudiod: debugInfo:{
2020-10-07 15:24:40.639731+0800 0x3c61be Debug 0x0 53524 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] Handle XPC message: <xpc object>
2020-10-07 15:24:40.639839+0800 0x3c61be Default 0x0 53524 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] XPC: BTAudioState for (null)
2020-10-07 15:24:40.639888+0800 0x3c61be Default 0x0 53524 bluetoothaudiod: debugInfo:{
2020-10-07 15:24:40.640578+0800 0x3c61be Debug 0x0 53524 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] Handle XPC message: <xpc object>
2020-10-07 15:24:40.640692+0800 0x3c61be Default 0x0 53524 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] XPC: BTAudioState for (null)
2020-10-07 15:24:40.640741+0800 0x3c61be Default 0x0 53524 bluetoothaudiod: debugInfo:{
2020-10-07 15:24:41.737545+0800 0x3c61be Default 0x0 53524 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] Update activity signaled:0
2020-10-07 15:24:41.737745+0800 0x3c61be Default 0x0 53524 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] Quitting now
2020-10-07 15:24:41.739627+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:InteropManager] [bluetoothAudioNotification] notification: {
2020-10-07 15:24:41.742410+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:InteropManager] [postStatusNotification] SCOActive: 0
2020-10-07 15:24:41.742450+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:InteropManager] [postStatusNotification] nonHIDConnections: 1
2020-10-07 15:24:41.742483+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:InteropManager] [postStatusNotification] A2DPActive: 0
2020-10-07 15:24:41.743764+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:InteropManager] statusDictionary: {
2020-10-07 15:24:41.743804+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:InteropManager] [updateAggressiveLEState] self.aggressiveLEActivityAllowed = YES
2020-10-07 15:24:41.803150+0800 0x3c61cf Activity 0x241660 53525 bluetoothaudiod: (CoreFoundation) Loading Preferences From System CFPrefsD For Search List
2020-10-07 15:24:41.803560+0800 0x3c5e9b Debug 0x241660 133 cfprefsd: (CoreFoundation) [com.apple.cfprefsd:User Defaults Daemon] Process 53525 sent a request related to { bluetoothaudiod, user: root, kCFPreferencesCurrentHost, no container, managed: 1 }
2020-10-07 15:24:41.803561+0800 0x3c5b34 Debug 0x241660 133 cfprefsd: (CoreFoundation) [com.apple.cfprefsd:User Defaults Daemon] Process 53525 sent a request related to { bluetoothaudiod, user: kCFPreferencesAnyUser, kCFPreferencesCurrentHost, no container, managed: 1 }
2020-10-07 15:24:41.803584+0800 0x3c5e9a Debug 0x241660 133 cfprefsd: (CoreFoundation) [com.apple.cfprefsd:User Defaults Daemon] Process 53525 sent a request related to { bluetoothaudiod, user: root, kCFPreferencesCurrentHost, no container, managed: 0 }
2020-10-07 15:24:41.803610+0800 0x3c5f3b Debug 0x241660 133 cfprefsd: (CoreFoundation) [com.apple.cfprefsd:User Defaults Daemon] Process 53525 sent a request related to { bluetoothaudiod, user: root, kCFPreferencesAnyHost, no container, managed: 0 }
2020-10-07 15:24:41.816793+0800 0x3c61cf Activity 0x241662 53525 bluetoothaudiod: (CoreFoundation) Loading Preferences From System CFPrefsD For Search List
2020-10-07 15:24:41.818043+0800 0x3c61cf Debug 0x0 53525 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] [unregisterHCI] entry: 0x0
2020-10-07 15:24:41.818073+0800 0x3c61cf Debug 0x0 53525 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] [registerHCI] entry (0x0)
2020-10-07 15:24:41.818151+0800 0x3c61cf Debug 0x0 53525 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] [registerHCI] exit: 0x0
2020-10-07 15:24:41.818388+0800 0x3c61cf Debug 0x0 53525 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] Handle XPC message: <xpc object>
2020-10-07 15:24:41.818521+0800 0x3c61cf Default 0x0 53525 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] XPC: BTAudioState for (null)
2020-10-07 15:24:41.818626+0800 0x3c61cf Default 0x0 53525 bluetoothaudiod: debugInfo:{
2020-10-07 15:24:41.818929+0800 0x3c61cf Debug 0x0 53525 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] Handle XPC message: <xpc object>
2020-10-07 15:24:41.819112+0800 0x3c61cf Default 0x0 53525 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] XPC: BTAudioState for (null)
2020-10-07 15:24:41.819168+0800 0x3c61cf Default 0x0 53525 bluetoothaudiod: debugInfo:{
2020-10-07 15:24:41.832840+0800 0x3c61cf Debug 0x0 53525 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] Handle XPC message: <xpc object>
2020-10-07 15:24:41.832998+0800 0x3c61cf Default 0x0 53525 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] XPC: BTAudioState for (null)
2020-10-07 15:24:41.833051+0800 0x3c61cf Default 0x0 53525 bluetoothaudiod: debugInfo:{
2020-10-07 15:24:41.834123+0800 0x3c61cf Debug 0x0 53525 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] Handle XPC message: <xpc object>
2020-10-07 15:24:41.834259+0800 0x3c61cf Default 0x0 53525 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] XPC: BTAudioState for (null)
2020-10-07 15:24:41.834308+0800 0x3c61cf Default 0x0 53525 bluetoothaudiod: debugInfo:{
2020-10-07 15:24:42.291049+0800 0x3c6166 Debug 0x0 129 AirPlayXPCHelper: (BluetoothAudio) [com.apple.bluetooth:BTFigE] We have no endpoints
2020-10-07 15:24:42.291197+0800 0x3c6166 Debug 0x0 129 AirPlayXPCHelper: (BluetoothAudio) [com.apple.bluetooth:BTFigE] We have no endpoints
2020-10-07 15:24:42.291317+0800 0x3c6166 Debug 0x0 129 AirPlayXPCHelper: (BluetoothAudio) [com.apple.bluetooth:BTFigE] We have no endpoints
2020-10-07 15:24:42.291559+0800 0x3c6166 Debug 0x0 129 AirPlayXPCHelper: (BluetoothAudio) [com.apple.bluetooth:BTFigE] We have no endpoints
2020-10-07 15:24:42.291670+0800 0x3c6166 Debug 0x0 129 AirPlayXPCHelper: (BluetoothAudio) [com.apple.bluetooth:BTFigE] We have no endpoints
2020-10-07 15:24:42.291787+0800 0x3c6166 Debug 0x0 129 AirPlayXPCHelper: (BluetoothAudio) [com.apple.bluetooth:BTFigE] We have no endpoints
2020-10-07 15:24:42.291947+0800 0x3c6166 Debug 0x0 129 AirPlayXPCHelper: (BluetoothAudio) [com.apple.bluetooth:BTFigE] We have no endpoints
2020-10-07 15:24:42.292062+0800 0x3c6166 Debug 0x0 129 AirPlayXPCHelper: (BluetoothAudio) [com.apple.bluetooth:BTFigE] We have no endpoints
2020-10-07 15:24:42.296009+0800 0x3c6166 Debug 0x0 129 AirPlayXPCHelper: (BluetoothAudio) [com.apple.bluetooth:BTFigE] We have no endpoints
2020-10-07 15:24:42.296141+0800 0x3c6166 Debug 0x0 129 AirPlayXPCHelper: (BluetoothAudio) [com.apple.bluetooth:BTFigE] We have no endpoints
2020-10-07 15:24:42.296258+0800 0x3c6166 Debug 0x0 129 AirPlayXPCHelper: (BluetoothAudio) [com.apple.bluetooth:BTFigE] We have no endpoints
2020-10-07 15:24:42.296465+0800 0x3c6166 Debug 0x0 129 AirPlayXPCHelper: (BluetoothAudio) [com.apple.bluetooth:BTFigE] We have no endpoints
2020-10-07 15:24:42.387816+0800 0x3c6166 Debug 0x0 129 AirPlayXPCHelper: (BluetoothAudio) [com.apple.bluetooth:BTFigE] We have no endpoints
2020-10-07 15:24:42.387960+0800 0x3c6166 Debug 0x0 129 AirPlayXPCHelper: (BluetoothAudio) [com.apple.bluetooth:BTFigE] We have no endpoints
2020-10-07 15:24:42.827267+0800 0x374b25 Debug 0x0 402 wirelessproxd: (CoreBluetooth) [com.apple.bluetooth:CoreBluetooth] Received XPC message 48: {
2020-10-07 15:24:42.827424+0800 0xe65 Info 0x0 402 wirelessproxd: [com.apple.bluetooth:WirelessProximity] WPDScanManager - Notifying Client About Discovered Device: Client ( 6A47A87A-3E1C-4AAB-B546-8D43EE06F906: sharingd (547) (WPPairing)) - UUID (6A47A87A-3E1C-4AAB-B546-8D43EE06F906)
2020-10-07 15:24:42.827477+0800 0xe65 Info 0x0 402 wirelessproxd: [com.apple.bluetooth:WirelessProximity] Telling process sharingd about discovered device of type 7 with data <4c000719 01032000 fa8f0601 0019bda2 6c7c0109 51471d3d 5807eb64 10>
2020-10-07 15:24:42.828575+0800 0x3c334a Debug 0x0 129 AirPlayXPCHelper: (BluetoothAudio) [com.apple.bluetooth:BTFigE] Found LE device with address 56-f0-ac-55-9b-de paired:0 inCase:0
2020-10-07 15:24:42.828625+0800 0x3c334a Debug 0x0 129 AirPlayXPCHelper: (BluetoothAudio) [com.apple.bluetooth:BTFigE] Didn't find an entry for 56-f0-ac-55-9b-de
2020-10-07 15:24:42.908821+0800 0x3c61cf Default 0x0 53525 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] Update activity signaled:0
2020-10-07 15:24:42.910391+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:InteropManager] [bluetoothAudioNotification] notification: {
2020-10-07 15:24:42.911988+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:InteropManager] [postStatusNotification] SCOActive: 0
2020-10-07 15:24:42.912026+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:InteropManager] [postStatusNotification] nonHIDConnections: 1
2020-10-07 15:24:42.912052+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:InteropManager] [postStatusNotification] A2DPActive: 0
2020-10-07 15:24:42.909010+0800 0x3c61cf Default 0x0 53525 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] Quitting now
2020-10-07 15:24:42.913322+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:InteropManager] statusDictionary: {
2020-10-07 15:24:42.913364+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:InteropManager] [updateAggressiveLEState] self.aggressiveLEActivityAllowed = YES
2020-10-07 15:24:42.931138+0800 0x3c61e1 Activity 0x2416b0 53527 bluetoothaudiod: (CoreFoundation) Loading Preferences From System CFPrefsD For Search List
2020-10-07 15:24:42.931661+0800 0x3c5f3b Debug 0x2416b0 133 cfprefsd: (CoreFoundation) [com.apple.cfprefsd:User Defaults Daemon] Process 53527 sent a request related to { bluetoothaudiod, user: root, kCFPreferencesCurrentHost, no container, managed: 1 }
2020-10-07 15:24:42.931695+0800 0x3c5e9b Debug 0x2416b0 133 cfprefsd: (CoreFoundation) [com.apple.cfprefsd:User Defaults Daemon] Process 53527 sent a request related to { bluetoothaudiod, user: kCFPreferencesAnyUser, kCFPreferencesCurrentHost, no container, managed: 1 }
2020-10-07 15:24:42.931716+0800 0x3c5e9a Debug 0x2416b0 133 cfprefsd: (CoreFoundation) [com.apple.cfprefsd:User Defaults Daemon] Process 53527 sent a request related to { bluetoothaudiod, user: root, kCFPreferencesCurrentHost, no container, managed: 0 }
2020-10-07 15:24:42.931725+0800 0x3c5f3b Debug 0x2416b0 133 cfprefsd: (CoreFoundation) [com.apple.cfprefsd:User Defaults Daemon] Process 53527 sent a request related to { bluetoothaudiod, user: root, kCFPreferencesAnyHost, no container, managed: 0 }
2020-10-07 15:24:42.931771+0800 0x3c5f3b Debug 0x2416b0 133 cfprefsd: (CoreFoundation) [com.apple.cfprefsd:User Defaults Daemon] Process 53527 read data for { bluetoothaudiod, root, kCFPreferencesAnyHost, no container, managed: 0 }, backed by /private/var/root/Library/Preferences/bluetoothaudiod.plist
2020-10-07 15:24:42.931817+0800 0x3c5f3b Debug 0x2416b0 133 cfprefsd: (CoreFoundation) [com.apple.cfprefsd:User Defaults Daemon] Process 53527 sent a request related to { bluetoothaudiod, user: kCFPreferencesAnyUser, kCFPreferencesCurrentHost, no container, managed: 0 }
2020-10-07 15:24:42.936053+0800 0x3c61e1 Activity 0x2416b1 53527 bluetoothaudiod: (CoreFoundation) Loading Preferences From System CFPrefsD
2020-10-07 15:24:42.944935+0800 0x3c61e1 Debug 0x0 53527 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] [unregisterHCI] entry: 0x0
2020-10-07 15:24:42.944966+0800 0x3c61e1 Debug 0x0 53527 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] [registerHCI] entry (0x0)
2020-10-07 15:24:42.945050+0800 0x3c61e1 Debug 0x0 53527 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] [registerHCI] exit: 0x0
2020-10-07 15:24:42.945290+0800 0x3c61e1 Debug 0x0 53527 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] Handle XPC message: <xpc object>
2020-10-07 15:24:42.945405+0800 0x3c61e1 Debug 0x0 53527 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] Handle XPC message: <xpc object>
2020-10-07 15:24:42.945472+0800 0x3c61e1 Default 0x0 53527 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] XPC: BTAudioState for (null)
2020-10-07 15:24:42.945572+0800 0x3c61e1 Default 0x0 53527 bluetoothaudiod: debugInfo:{
2020-10-07 15:24:42.945755+0800 0x3c61e1 Default 0x0 53527 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] XPC: BTAudioState for (null)
2020-10-07 15:24:42.945809+0800 0x3c61e1 Default 0x0 53527 bluetoothaudiod: debugInfo:{
2020-10-07 15:24:42.946444+0800 0x3c61e1 Debug 0x0 53527 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] Handle XPC message: <xpc object>
2020-10-07 15:24:42.946546+0800 0x3c61e1 Default 0x0 53527 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] XPC: BTAudioState for (null)
2020-10-07 15:24:42.946602+0800 0x3c61e1 Default 0x0 53527 bluetoothaudiod: debugInfo:{
2020-10-07 15:24:42.947156+0800 0x3c61e1 Debug 0x0 53527 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] Handle XPC message: <xpc object>
2020-10-07 15:24:42.947250+0800 0x3c61e1 Default 0x0 53527 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] XPC: BTAudioState for (null)
2020-10-07 15:24:42.947302+0800 0x3c61e1 Default 0x0 53527 bluetoothaudiod: debugInfo:{
2020-10-07 15:24:44.034944+0800 0x3c61e1 Default 0x0 53527 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] Update activity signaled:0
2020-10-07 15:24:44.035134+0800 0x3c61e1 Default 0x0 53527 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] Quitting now
2020-10-07 15:24:44.036113+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:InteropManager] [bluetoothAudioNotification] notification: {
2020-10-07 15:24:44.038206+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:InteropManager] [postStatusNotification] SCOActive: 0
2020-10-07 15:24:44.038241+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:InteropManager] [postStatusNotification] nonHIDConnections: 1
2020-10-07 15:24:44.038267+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:InteropManager] [postStatusNotification] A2DPActive: 0
2020-10-07 15:24:44.040151+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:InteropManager] statusDictionary: {
2020-10-07 15:24:44.040192+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:InteropManager] [updateAggressiveLEState] self.aggressiveLEActivityAllowed = YES
2020-10-07 15:24:44.069878+0800 0x3c61e8 Activity 0x241702 53528 bluetoothaudiod: (CoreFoundation) Loading Preferences From System CFPrefsD For Search List
2020-10-07 15:24:44.071170+0800 0x3c61e8 Debug 0x0 53528 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] [unregisterHCI] entry: 0x0
2020-10-07 15:24:44.071203+0800 0x3c61e8 Debug 0x0 53528 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] [registerHCI] entry (0x0)
2020-10-07 15:24:44.071281+0800 0x3c61e8 Debug 0x0 53528 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] [registerHCI] exit: 0x0
2020-10-07 15:24:44.071535+0800 0x3c61e8 Debug 0x0 53528 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] Handle XPC message: <xpc object>
2020-10-07 15:24:44.078307+0800 0x3c61e8 Debug 0x0 53528 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] Handle XPC message: <xpc object>
2020-10-07 15:24:44.078420+0800 0x3c61e8 Default 0x0 53528 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] XPC: BTAudioState for (null)
2020-10-07 15:24:45.182454+0800 0x3c61f5 Activity 0x241740 53529 bluetoothaudiod: (CoreFoundation) Loading Preferences From System CFPrefsD For Search List
2020-10-07 15:24:45.182884+0800 0x3c5b34 Debug 0x241740 133 cfprefsd: (CoreFoundation) [com.apple.cfprefsd:User Defaults Daemon] Process 53529 sent a request related to { bluetoothaudiod, user: root, kCFPreferencesCurrentHost, no container, managed: 0 }
2020-10-07 15:24:45.182891+0800 0x3c5e9b Debug 0x241740 133 cfprefsd: (CoreFoundation) [com.apple.cfprefsd:User Defaults Daemon] Process 53529 sent a request related to { bluetoothaudiod, user: root, kCFPreferencesCurrentHost, no container, managed: 1 }
2020-10-07 15:24:45.182950+0800 0x3c5f3b Debug 0x241740 133 cfprefsd: (CoreFoundation) [com.apple.cfprefsd:User Defaults Daemon] Process 53529 sent a request related to { bluetoothaudiod, user: root, kCFPreferencesAnyHost, no container, managed: 0 }
2020-10-07 15:24:45.183061+0800 0x3c5f3b Debug 0x241740 133 cfprefsd: (CoreFoundation) [com.apple.cfprefsd:User Defaults Daemon] Process 53529 read data for { bluetoothaudiod, root, kCFPreferencesAnyHost, no container, managed: 0 }, backed by /private/var/root/Library/Preferences/bluetoothaudiod.plist
2020-10-07 15:24:45.183106+0800 0x3c5e9a Debug 0x241740 133 cfprefsd: (CoreFoundation) [com.apple.cfprefsd:User Defaults Daemon] Process 53529 sent a request related to { bluetoothaudiod, user: kCFPreferencesAnyUser, kCFPreferencesCurrentHost, no container, managed: 1 }
2020-10-07 15:24:45.183116+0800 0x3c5b34 Debug 0x241740 133 cfprefsd: (CoreFoundation) [com.apple.cfprefsd:User Defaults Daemon] Process 53529 sent a request related to { bluetoothaudiod, user: kCFPreferencesAnyUser, kCFPreferencesCurrentHost, no container, managed: 0 }
2020-10-07 15:24:45.198978+0800 0x3c61f5 Debug 0x0 53529 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] Handle XPC message: <xpc object>
2020-10-07 15:24:45.199075+0800 0x3c61f5 Default 0x0 53529 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] XPC: BTAudioState for (null)
2020-10-07 15:24:45.199129+0800 0x3c61f5 Default 0x0 53529 bluetoothaudiod: debugInfo:{
2020-10-07 15:24:45.199373+0800 0x3c61f5 Debug 0x0 53529 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] Handle XPC message: <xpc object>
2020-10-07 15:24:45.199479+0800 0x3c61f5 Default 0x0 53529 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] XPC: BTAudioState for (null)
2020-10-07 15:24:45.199530+0800 0x3c61f5 Default 0x0 53529 bluetoothaudiod: debugInfo:{
2020-10-07 15:24:46.279674+0800 0x3c61f5 Default 0x0 53529 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] Update activity signaled:0
2020-10-07 15:24:46.282086+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:InteropManager] [bluetoothAudioNotification] notification: {
2020-10-07 15:24:46.282508+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:InteropManager] [postStatusNotification] SCOActive: 0
2020-10-07 15:24:46.282542+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:InteropManager] [postStatusNotification] nonHIDConnections: 1
2020-10-07 15:24:46.282574+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:InteropManager] [postStatusNotification] A2DPActive: 0
2020-10-07 15:24:46.279874+0800 0x3c61f5 Default 0x0 53529 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] Quitting now
2020-10-07 15:24:46.283352+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:InteropManager] statusDictionary: {
2020-10-07 15:24:46.283390+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:InteropManager] [updateAggressiveLEState] self.aggressiveLEActivityAllowed = YES
2020-10-07 15:24:46.304183+0800 0x3c622e Activity 0x2417e0 53532 bluetoothaudiod: (CoreFoundation) Loading Preferences From System CFPrefsD For Search List
2020-10-07 15:24:46.304705+0800 0x3c5b34 Debug 0x2417e0 133 cfprefsd: (CoreFoundation) [com.apple.cfprefsd:User Defaults Daemon] Process 53532 sent a request related to { bluetoothaudiod, user: root, kCFPreferencesCurrentHost, no container, managed: 1 }
2020-10-07 15:24:46.304790+0800 0x3c5b34 Debug 0x2417e0 133 cfprefsd: (CoreFoundation) [com.apple.cfprefsd:User Defaults Daemon] Process 53532 sent a request related to { bluetoothaudiod, user: root, kCFPreferencesCurrentHost, no container, managed: 0 }
2020-10-07 15:24:46.304842+0800 0x3c5f0a Debug 0x2417e0 133 cfprefsd: (CoreFoundation) [com.apple.cfprefsd:User Defaults Daemon] Process 53532 sent a request related to { bluetoothaudiod, user: root, kCFPreferencesAnyHost, no container, managed: 0 }
2020-10-07 15:24:46.304885+0800 0x3c5f0a Debug 0x2417e0 133 cfprefsd: (CoreFoundation) [com.apple.cfprefsd:User Defaults Daemon] Process 53532 read data for { bluetoothaudiod, root, kCFPreferencesAnyHost, no container, managed: 0 }, backed by /private/var/root/Library/Preferences/bluetoothaudiod.plist
2020-10-07 15:24:46.304978+0800 0x3c5f3b Debug 0x2417e0 133 cfprefsd: (CoreFoundation) [com.apple.cfprefsd:User Defaults Daemon] Process 53532 sent a request related to { bluetoothaudiod, user: kCFPreferencesAnyUser, kCFPreferencesCurrentHost, no container, managed: 1 }
2020-10-07 15:24:46.304992+0800 0x3c5b34 Debug 0x2417e0 133 cfprefsd: (CoreFoundation) [com.apple.cfprefsd:User Defaults Daemon] Process 53532 sent a request related to { bluetoothaudiod, user: kCFPreferencesAnyUser, kCFPreferencesCurrentHost, no container, managed: 0 }
2020-10-07 15:24:46.309061+0800 0x3c622e Activity 0x2417e1 53532 bluetoothaudiod: (CoreFoundation) Loading Preferences From System CFPrefsD
2020-10-07 15:24:46.317466+0800 0x3c622e Activity 0x2417e2 53532 bluetoothaudiod: (CoreFoundation) Loading Preferences From System CFPrefsD For Search List
2020-10-07 15:24:46.318627+0800 0x3c622e Debug 0x0 53532 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] [unregisterHCI] entry: 0x0
2020-10-07 15:24:46.318658+0800 0x3c622e Debug 0x0 53532 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] [registerHCI] entry (0x0)
2020-10-07 15:24:46.318741+0800 0x3c622e Debug 0x0 53532 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] [registerHCI] exit: 0x0
2020-10-07 15:24:46.318974+0800 0x3c622e Debug 0x0 53532 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] Handle XPC message: <xpc object>
2020-10-07 15:24:46.319085+0800 0x3c622e Debug 0x0 53532 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] Handle XPC message: <xpc object>
2020-10-07 15:24:46.319152+0800 0x3c622e Default 0x0 53532 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] XPC: BTAudioState for (null)
2020-10-07 15:24:46.319262+0800 0x3c622e Default 0x0 53532 bluetoothaudiod: debugInfo:{
2020-10-07 15:24:46.319512+0800 0x3c622e Default 0x0 53532 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] XPC: BTAudioState for (null)
2020-10-07 15:24:46.319568+0800 0x3c622e Default 0x0 53532 bluetoothaudiod: debugInfo:{
2020-10-07 15:24:46.329927+0800 0x3c622e Debug 0x0 53532 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] Handle XPC message: <xpc object>
2020-10-07 15:24:46.330051+0800 0x3c622e Debug 0x0 53532 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] Handle XPC message: <xpc object>
2020-10-07 15:24:46.330118+0800 0x3c622e Default 0x0 53532 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] XPC: BTAudioState for (null)
2020-10-07 15:24:46.330172+0800 0x3c622e Default 0x0 53532 bluetoothaudiod: debugInfo:{
2020-10-07 15:24:46.330338+0800 0x3c622e Default 0x0 53532 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] XPC: BTAudioState for (null)
2020-10-07 15:24:46.330385+0800 0x3c622e Default 0x0 53532 bluetoothaudiod: debugInfo:{
2020-10-07 15:24:47.440609+0800 0x3c62a1 Activity 0x241870 53540 bluetoothaudiod: (CoreFoundation) Loading Preferences From System CFPrefsD For Search List
2020-10-07 15:24:47.441075+0800 0x3c5e9a Debug 0x241870 133 cfprefsd: (CoreFoundation) [com.apple.cfprefsd:User Defaults Daemon] Process 53540 sent a request related to { bluetoothaudiod, user: root, kCFPreferencesCurrentHost, no container, managed: 1 }
2020-10-07 15:24:47.441140+0800 0x3c5e9a Debug 0x241870 133 cfprefsd: (CoreFoundation) [com.apple.cfprefsd:User Defaults Daemon] Process 53540 sent a request related to { bluetoothaudiod, user: kCFPreferencesAnyUser, kCFPreferencesCurrentHost, no container, managed: 1 }
2020-10-07 15:24:47.441195+0800 0x3c5e9a Debug 0x241870 133 cfprefsd: (CoreFoundation) [com.apple.cfprefsd:User Defaults Daemon] Process 53540 sent a request related to { bluetoothaudiod, user: root, kCFPreferencesCurrentHost, no container, managed: 0 }
2020-10-07 15:24:47.441318+0800 0x3c627b Debug 0x241870 133 cfprefsd: (CoreFoundation) [com.apple.cfprefsd:User Defaults Daemon] Process 53540 sent a request related to { bluetoothaudiod, user: root, kCFPreferencesAnyHost, no container, managed: 0 }
2020-10-07 15:24:47.441367+0800 0x3c627b Debug 0x241870 133 cfprefsd: (CoreFoundation) [com.apple.cfprefsd:User Defaults Daemon] Process 53540 read data for { bluetoothaudiod, root, kCFPreferencesAnyHost, no container, managed: 0 }, backed by /private/var/root/Library/Preferences/bluetoothaudiod.plist
2020-10-07 15:24:47.441428+0800 0x3c5f0a Debug 0x241870 133 cfprefsd: (CoreFoundation) [com.apple.cfprefsd:User Defaults Daemon] Process 53540 sent a request related to { bluetoothaudiod, user: kCFPreferencesAnyUser, kCFPreferencesCurrentHost, no container, managed: 0 }
2020-10-07 15:24:47.445781+0800 0x3c62a1 Activity 0x241871 53540 bluetoothaudiod: (CoreFoundation) Loading Preferences From System CFPrefsD
2020-10-07 15:24:47.453977+0800 0x3c62a1 Activity 0x241872 53540 bluetoothaudiod: (CoreFoundation) Loading Preferences From System CFPrefsD For Search List
2020-10-07 15:24:47.455285+0800 0x3c62a1 Debug 0x0 53540 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] [unregisterHCI] entry: 0x0
2020-10-07 15:24:47.455316+0800 0x3c62a1 Debug 0x0 53540 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] [registerHCI] entry (0x0)
2020-10-07 15:24:47.455396+0800 0x3c62a1 Debug 0x0 53540 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] [registerHCI] exit: 0x0
2020-10-07 15:24:47.455632+0800 0x3c62a1 Debug 0x0 53540 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] Handle XPC message: <xpc object>
2020-10-07 15:24:47.455743+0800 0x3c62a1 Default 0x0 53540 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] XPC: BTAudioState for (null)
2020-10-07 15:24:47.455848+0800 0x3c62a1 Default 0x0 53540 bluetoothaudiod: debugInfo:{
2020-10-07 15:24:47.456034+0800 0x3c62a1 Debug 0x0 53540 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] Handle XPC message: <xpc object>
2020-10-07 15:24:47.456208+0800 0x3c62a1 Default 0x0 53540 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] XPC: BTAudioState for (null)
2020-10-07 15:24:47.456265+0800 0x3c62a1 Default 0x0 53540 bluetoothaudiod: debugInfo:{
2020-10-07 15:24:47.654403+0800 0x3c62a1 Debug 0x0 53540 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] Handle XPC message: <xpc object>
2020-10-07 15:24:47.654525+0800 0x3c62a1 Default 0x0 53540 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] XPC: BTAudioState for (null)
2020-10-07 15:24:47.654581+0800 0x3c62a1 Default 0x0 53540 bluetoothaudiod: debugInfo:{
2020-10-07 15:24:48.587155+0800 0x3c63e6 Activity 0x2418c2 53541 bluetoothaudiod: (CoreFoundation) Loading Preferences From System CFPrefsD For Search List
2020-10-07 15:24:49.683657+0800 0x3c63e6 Default 0x0 53541 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] Update activity signaled:0
2020-10-07 15:24:49.685153+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:InteropManager] [bluetoothAudioNotification] notification: {
2020-10-07 15:24:49.685526+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:InteropManager] [postStatusNotification] SCOActive: 0
2020-10-07 15:24:49.686302+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:InteropManager] [postStatusNotification] nonHIDConnections: 1
2020-10-07 15:24:49.686335+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:InteropManager] [postStatusNotification] A2DPActive: 0
2020-10-07 15:24:49.687262+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:InteropManager] statusDictionary: {
2020-10-07 15:24:49.687300+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:InteropManager] [updateAggressiveLEState] self.aggressiveLEActivityAllowed = YES
2020-10-07 15:24:49.683845+0800 0x3c63e6 Default 0x0 53541 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] Quitting now
2020-10-07 15:24:49.707927+0800 0x3c6402 Activity 0x241960 53544 bluetoothaudiod: (CoreFoundation) Loading Preferences From System CFPrefsD For Search List
2020-10-07 15:24:49.708340+0800 0x3c5e9a Debug 0x241960 133 cfprefsd: (CoreFoundation) [com.apple.cfprefsd:User Defaults Daemon] Process 53544 sent a request related to { bluetoothaudiod, user: kCFPreferencesAnyUser, kCFPreferencesCurrentHost, no container, managed: 1 }
2020-10-07 15:24:49.708339+0800 0x3c5f0a Debug 0x241960 133 cfprefsd: (CoreFoundation) [com.apple.cfprefsd:User Defaults Daemon] Process 53544 sent a request related to { bluetoothaudiod, user: root, kCFPreferencesCurrentHost, no container, managed: 0 }
2020-10-07 15:24:49.708352+0800 0x3c5f3b Debug 0x241960 133 cfprefsd: (CoreFoundation) [com.apple.cfprefsd:User Defaults Daemon] Process 53544 sent a request related to { bluetoothaudiod, user: root, kCFPreferencesAnyHost, no container, managed: 0 }
2020-10-07 15:24:49.708401+0800 0x3c5f3b Debug 0x241960 133 cfprefsd: (CoreFoundation) [com.apple.cfprefsd:User Defaults Daemon] Process 53544 read data for { bluetoothaudiod, root, kCFPreferencesAnyHost, no container, managed: 0 }, backed by /private/var/root/Library/Preferences/bluetoothaudiod.plist
2020-10-07 15:24:49.708488+0800 0x3c5f0a Debug 0x241960 133 cfprefsd: (CoreFoundation) [com.apple.cfprefsd:User Defaults Daemon] Process 53544 sent a request related to { bluetoothaudiod, user: kCFPreferencesAnyUser, kCFPreferencesCurrentHost, no container, managed: 0 }
2020-10-07 15:24:49.708491+0800 0x3c627b Debug 0x241960 133 cfprefsd: (CoreFoundation) [com.apple.cfprefsd:User Defaults Daemon] Process 53544 sent a request related to { bluetoothaudiod, user: root, kCFPreferencesCurrentHost, no container, managed: 1 }
2020-10-07 15:24:49.712967+0800 0x3c6402 Activity 0x241961 53544 bluetoothaudiod: (CoreFoundation) Loading Preferences From System CFPrefsD
2020-10-07 15:24:49.721328+0800 0x3c6402 Activity 0x241962 53544 bluetoothaudiod: (CoreFoundation) Loading Preferences From System CFPrefsD For Search List
2020-10-07 15:24:49.722577+0800 0x3c6402 Debug 0x0 53544 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] [unregisterHCI] entry: 0x0
2020-10-07 15:24:49.722611+0800 0x3c6402 Debug 0x0 53544 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] [registerHCI] entry (0x0)
2020-10-07 15:24:49.722700+0800 0x3c6402 Debug 0x0 53544 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] [registerHCI] exit: 0x0
2020-10-07 15:24:49.722935+0800 0x3c6402 Debug 0x0 53544 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] Handle XPC message: <xpc object>
2020-10-07 15:24:49.723051+0800 0x3c6402 Debug 0x0 53544 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] Handle XPC message: <xpc object>
2020-10-07 15:24:49.723128+0800 0x3c6402 Default 0x0 53544 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] XPC: BTAudioState for (null)
2020-10-07 15:24:49.723228+0800 0x3c6402 Default 0x0 53544 bluetoothaudiod: debugInfo:{
2020-10-07 15:24:49.723421+0800 0x3c6402 Default 0x0 53544 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] XPC: BTAudioState for (null)
2020-10-07 15:24:49.723474+0800 0x3c6402 Default 0x0 53544 bluetoothaudiod: debugInfo:{
2020-10-07 15:24:50.845164+0800 0x3c640e Activity 0x2419a0 53545 bluetoothaudiod: (CoreFoundation) Loading Preferences From System CFPrefsD For Search List
2020-10-07 15:24:50.845612+0800 0x3c5e9a Debug 0x2419a0 133 cfprefsd: (CoreFoundation) [com.apple.cfprefsd:User Defaults Daemon] Process 53545 sent a request related to { bluetoothaudiod, user: root, kCFPreferencesCurrentHost, no container, managed: 0 }
2020-10-07 15:24:50.845612+0800 0x3c5f3b Debug 0x2419a0 133 cfprefsd: (CoreFoundation) [com.apple.cfprefsd:User Defaults Daemon] Process 53545 sent a request related to { bluetoothaudiod, user: kCFPreferencesAnyUser, kCFPreferencesCurrentHost, no container, managed: 1 }
2020-10-07 15:24:50.845623+0800 0x3c5f0a Debug 0x2419a0 133 cfprefsd: (CoreFoundation) [com.apple.cfprefsd:User Defaults Daemon] Process 53545 sent a request related to { bluetoothaudiod, user: root, kCFPreferencesAnyHost, no container, managed: 0 }
2020-10-07 15:24:50.845669+0800 0x3c627b Debug 0x2419a0 133 cfprefsd: (CoreFoundation) [com.apple.cfprefsd:User Defaults Daemon] Process 53545 sent a request related to { bluetoothaudiod, user: root, kCFPreferencesCurrentHost, no container, managed: 1 }
2020-10-07 15:24:50.845676+0800 0x3c5f0a Debug 0x2419a0 133 cfprefsd: (CoreFoundation) [com.apple.cfprefsd:User Defaults Daemon] Process 53545 read data for { bluetoothaudiod, root, kCFPreferencesAnyHost, no container, managed: 0 }, backed by /private/var/root/Library/Preferences/bluetoothaudiod.plist
2020-10-07 15:24:50.845782+0800 0x3c5e9a Debug 0x2419a0 133 cfprefsd: (CoreFoundation) [com.apple.cfprefsd:User Defaults Daemon] Process 53545 sent a request related to { bluetoothaudiod, user: kCFPreferencesAnyUser, kCFPreferencesCurrentHost, no container, managed: 0 }
2020-10-07 15:24:50.856867+0800 0x3c640e Activity 0x2419a2 53545 bluetoothaudiod: (CoreFoundation) Loading Preferences From System CFPrefsD For Search List
2020-10-07 15:24:50.858110+0800 0x3c640e Debug 0x0 53545 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] [unregisterHCI] entry: 0x0
2020-10-07 15:24:50.858143+0800 0x3c640e Debug 0x0 53545 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] [registerHCI] entry (0x0)
2020-10-07 15:24:50.858221+0800 0x3c640e Debug 0x0 53545 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] [registerHCI] exit: 0x0
2020-10-07 15:24:50.858472+0800 0x3c640e Debug 0x0 53545 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] Handle XPC message: <xpc object>
2020-10-07 15:24:50.858598+0800 0x3c640e Debug 0x0 53545 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] Handle XPC message: <xpc object>
2020-10-07 15:24:50.858667+0800 0x3c640e Default 0x0 53545 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] XPC: BTAudioState for (null)
2020-10-07 15:24:50.858766+0800 0x3c640e Default 0x0 53545 bluetoothaudiod: debugInfo:{
2020-10-07 15:24:50.858941+0800 0x3c640e Debug 0x0 53545 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] Handle XPC message: <xpc object>
2020-10-07 15:24:50.859013+0800 0x3c640e Default 0x0 53545 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] XPC: BTAudioState for (null)
2020-10-07 15:24:50.859066+0800 0x3c640e Default 0x0 53545 bluetoothaudiod: debugInfo:{
2020-10-07 15:24:50.859182+0800 0x3c640e Debug 0x0 53545 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] Handle XPC message: <xpc object>
2020-10-07 15:24:50.859244+0800 0x3c640e Default 0x0 53545 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] XPC: BTAudioState for (null)
2020-10-07 15:24:50.859289+0800 0x3c640e Default 0x0 53545 bluetoothaudiod: debugInfo:{
2020-10-07 15:24:50.859526+0800 0x3c640e Default 0x0 53545 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] XPC: BTAudioState for (null)
2020-10-07 15:24:50.859574+0800 0x3c640e Default 0x0 53545 bluetoothaudiod: debugInfo:{
2020-10-07 15:24:51.556129+0800 0x3c6419 Debug 0x241901 129 AirPlayXPCHelper: (BluetoothAudio) [com.apple.bluetooth:BTFigE] We have no endpoints
2020-10-07 15:24:52.061059+0800 0x3c6241 Info 0x0 460 loginwindow: (LaunchServices) [com.apple.launchservices:cas] CFDictionaryRef FindApplicationInformationDictionaryGivenASNUsingLocalCache(LSSessionID, LSASNRef)(), information in shared memory with seed 532 was still valid, so using cached info { "ApplicationType"="Foreground", "BuildMachineOSBuild"="17A405001", "BundleIdentifierLowerCase"="com.apple.bluetoothexplorer", "CanBecomeFrontmost"=true, "CFBundleDevelopmentRegion"="English", "CFBundleExecutable"="Bluetooth Explorer", "CFBundleExecutablePath"="/private/var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/T/AppTranslocation/F4BAC38B-7C33-46C4-818A-436B4DE7B7EC/d/Bluetooth Explorer.app/Contents/MacOS/Bluetooth Explorer", "CFBundleExecutablePathDeviceID"=771751976, "CFBundleExecutablePathINode"=15578, "CFBundleGetInfoString"="6.0.9, Copyright © 2002-2018 Apple Inc. All rights reserved.", "CFBundleHelpBookFolder"="BluetoothHelp", "CFBundleHelpBookName"="Bluetooth Help", "CFBundleIconFile"="AppIcon", "CFBundleIdentifier"="com.apple.BluetoothExplorer", "CFBundleInfoDictionaryVersion"="6.0", "CFBundleName"="Bluetooth Explorer", "CFBundleNameLowerCase"="bluetooth explorer", "CFBundleNum<…>
2020-10-07 15:24:52.150835+0800 0x3c6418 Info 0x0 129 AirPlayXPCHelper: (BluetoothAudio) [com.apple.bluetooth:BTFigE] Discovery Mode set to DiscoveryMode_DetailedDiscovery
2020-10-07 15:24:52.150903+0800 0x3c334a Default 0x0 129 AirPlayXPCHelper: (BluetoothAudio) [com.apple.bluetooth:BTFigE] Starting LE scanning (1) - already scanning (stop start)
2020-10-07 15:24:52.150936+0800 0x3c334a Debug 0x0 129 AirPlayXPCHelper: (BluetoothAudio) [com.apple.bluetooth:BTFigE] Stop LE scanning
2020-10-07 15:24:52.150977+0800 0x3c334a Info 0x0 129 AirPlayXPCHelper: (BluetoothAudio) [com.apple.bluetooth:BTFigE] Handle All Not Nearby
2020-10-07 15:24:52.151010+0800 0x3c334a Default 0x0 129 AirPlayXPCHelper: (BluetoothAudio) [com.apple.bluetooth:BTFigE] Posting Endpoints Changed Notification #endpoints:0
2020-10-07 15:24:52.156565+0800 0xe65 Default 0x0 402 wirelessproxd: [com.apple.bluetooth:WirelessProximity] Start advertising for process AirPlayXPCHelper (129) of type 10 with advertising interval 48 (30.00 ms)
2020-10-07 15:24:52.156684+0800 0xe65 Default 0x0 402 wirelessproxd: [com.apple.bluetooth:WirelessProximity] advertisingRulesOSX - advertisements: (
2020-10-07 15:24:52.156816+0800 0xe65 Default 0x0 402 wirelessproxd: [com.apple.bluetooth:WirelessProximity] Requesting to start advertising for clients 10 with (
2020-10-07 15:24:52.157000+0800 0xe65 Debug 0x0 402 wirelessproxd: (CoreBluetooth) [com.apple.bluetooth:CoreBluetooth] Sending XPC message 17: (null)
2020-10-07 15:24:52.157067+0800 0xe65 Debug 0x0 402 wirelessproxd: (CoreBluetooth) [com.apple.bluetooth:CoreBluetooth] Sending XPC message 17: (null)
2020-10-07 15:24:52.157153+0800 0xe65 Debug 0x0 402 wirelessproxd: (CoreBluetooth) [com.apple.bluetooth:CoreBluetooth] Sending XPC message 16: {
2020-10-07 15:24:52.157075+0800 0x15f5 Default 0x0 547 sharingd: (WirelessProximity) [com.apple.bluetooth:WirelessProximity] Nearby stop scanning: scan request of type 15, blob: <>, mask <>, active: 0, duplicates: 0, screen on: No Scan, screen off: No Scan, rssi: -90, peers: (
2020-10-07 15:24:52.157685+0800 0x15f5 Default 0x0 547 sharingd: (WirelessProximity) [com.apple.bluetooth:WirelessProximity] Nearby start scanning with data: scan request of type 15, blob: <>, mask <>, active: 0, duplicates: 0, screen on: 300, screen off: 966, rssi: -70, peers: (
2020-10-07 15:24:52.159871+0800 0x15f5 Default 0x0 547 sharingd: (WirelessProximity) [com.apple.bluetooth:WirelessProximity] WPClient (0x7f8666e79890 - WPPairing) XPC Connection invalidated
2020-10-07 15:24:52.159911+0800 0x15f5 Default 0x0 547 sharingd: (WirelessProximity) [com.apple.bluetooth:WirelessProximity] State changed to 0 from 3
2020-10-07 15:24:52.159944+0800 0x15f5 Default 0x0 547 sharingd: (WirelessProximity) [com.apple.bluetooth:WirelessProximity] Advertiser state changed to 0 from 3
2020-10-07 15:24:52.160051+0800 0x15f5 Default 0x0 547 sharingd: (WirelessProximity) [com.apple.bluetooth:WirelessProximity] WPClient deallocing (0x7f8666e79890 - WPPairing)
2020-10-07 15:24:52.160667+0800 0x15f5 Default 0x0 547 sharingd: (WirelessProximity) [com.apple.bluetooth:WirelessProximity] Nearby stop scanning: scan request of type 15, blob: <>, mask <>, active: 0, duplicates: 0, screen on: No Scan, screen off: No Scan, rssi: -90, peers: (
2020-10-07 15:24:52.160804+0800 0x15f5 Default 0x0 547 sharingd: (WirelessProximity) [com.apple.bluetooth:WirelessProximity] Nearby start scanning with data: scan request of type 15, blob: <>, mask <>, active: 0, duplicates: 0, screen on: 300, screen off: 966, rssi: -70, peers: (
2020-10-07 15:24:52.160985+0800 0x15f5 Default 0x0 547 sharingd: (WirelessProximity) [com.apple.bluetooth:WirelessProximity] Nearby stop scanning: scan request of type 15, blob: <>, mask <>, active: 0, duplicates: 0, screen on: No Scan, screen off: No Scan, rssi: -90, peers: (
2020-10-07 15:24:52.161077+0800 0x15f5 Default 0x0 547 sharingd: (WirelessProximity) [com.apple.bluetooth:WirelessProximity] Nearby start scanning with data: scan request of type 15, blob: <>, mask <>, active: 0, duplicates: 0, screen on: 300, screen off: 966, rssi: -70, peers: (
2020-10-07 15:24:52.161342+0800 0x393c50 Default 0x0 547 sharingd: (WirelessProximity) [com.apple.bluetooth:WirelessProximity] WPClient (0x7f8666e69870 - WPPairing) establishing new XPC Connection for process sharingd
2020-10-07 15:24:52.159462+0800 0xe65 Default 0x0 402 wirelessproxd: [com.apple.bluetooth:WirelessProximity] Stop scanning for process sharingd (547) with scan request of type 15, blob: <>, mask <>, active: 0, duplicates: 0, screen on: No Scan, screen off: No Scan, rssi: -90, peers: (
2020-10-07 15:24:52.159534+0800 0xe65 Default 0x0 402 wirelessproxd: [com.apple.bluetooth:WirelessProximity] Removing scan request scan request of type 15, blob: <>, mask <>, active: 0, duplicates: 0, screen on: No Scan, screen off: No Scan, rssi: -90, peers: (
2020-10-07 15:24:52.159578+0800 0xe65 Default 0x0 402 wirelessproxd: [com.apple.bluetooth:WirelessProximity] heySiriScanActive: NO
2020-10-07 15:24:52.159651+0800 0xe65 Default 0x0 402 wirelessproxd: [com.apple.bluetooth:WirelessProximity] Passively scanning for devices of types: 15 7 9 (Window: 30/Interval: 300)
2020-10-07 15:24:52.159722+0800 0xe65 Default 0x0 402 wirelessproxd: [com.apple.bluetooth:WirelessProximity] About to scan for type: 15 - rssi: -70 - payload: <00000000 00000000 00000000 00000000 00000000 0000> - mask: <00000000 00000000 00000000 00000000 00000000 0000> - peers: 0
2020-10-07 15:24:52.159895+0800 0xe65 Default 0x0 402 wirelessproxd: [com.apple.bluetooth:WirelessProximity] About to scan for type: 7 - rssi: -75 - payload: <00000000 00000000 00000000 00000000 00000000 0000> - mask: <00000000 00000000 00000000 00000000 00000000 0000> - peers: 0
2020-10-07 15:24:52.160363+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:CBXPCManager] Client (Peripheral (1) wirelessproxd:402) requesting to stop advertising
2020-10-07 15:24:52.160846+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:CBXPCManager] Client (Peripheral (1) wirelessproxd:402) requesting to stop advertising
2020-10-07 15:24:52.161290+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:CBXPCManager] Client (Peripheral (1) wirelessproxd:402) requesting to start advertising
2020-10-07 15:24:52.160528+0800 0x3c642c Default 0x0 129 AirPlayXPCHelper: (BluetoothAudio) [com.apple.bluetooth:BTFigE] Successfully started LE device discovery
2020-10-07 15:24:52.161533+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:CBXPCManager] Found Apple Mfg Data: <06ff4c00 0a0100>
2020-10-07 15:24:52.161578+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:CBXPCManager] Client (Peripheral (1) wirelessproxd:402) requesting apple specific data type 10
2020-10-07 15:24:52.161622+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:CBXPCManager] Client (Peripheral (1) wirelessproxd:402) requesting foreground advertising
2020-10-07 15:24:52.162221+0800 0x3c642e Debug 0x0 402 wirelessproxd: (CoreBluetooth) [com.apple.bluetooth:CoreBluetooth] Received XPC message 28: {
2020-10-07 15:24:52.159982+0800 0xe65 Default 0x0 402 wirelessproxd: [com.apple.bluetooth:WirelessProximity] About to scan for type: 9 - rssi: -90 - payload: <00000000 00000000 00000000 00000000 00000000 0000> - mask: <00000000 00000000 00000000 00000000 00000000 0000> - peers: 0
2020-10-07 15:24:52.162327+0800 0xe65 Debug 0x0 402 wirelessproxd: [com.apple.bluetooth:WirelessProximity] Scan options kCBScanOptionScanWindow => 30 changed: NO
2020-10-07 15:24:52.162478+0800 0x3c642f Debug 0x0 402 wirelessproxd: (CoreBluetooth) [com.apple.bluetooth:CoreBluetooth] Received XPC message 28: {
2020-10-07 15:24:52.162532+0800 0xe65 Debug 0x0 402 wirelessproxd: [com.apple.bluetooth:WirelessProximity] Scan options kCBScanOptionScanInterval => 300 changed: NO
2020-10-07 15:24:52.162979+0800 0xe65 Debug 0x0 402 wirelessproxd: [com.apple.bluetooth:WirelessProximity] Scan options kCBScanOptionLatencyCritical => 0 changed: NO
2020-10-07 15:24:52.163019+0800 0xe65 Debug 0x0 402 wirelessproxd: [com.apple.bluetooth:WirelessProximity] Scan options kCBScanOptionCacheResults => 0 changed: NO
2020-10-07 15:24:52.164025+0800 0xe65 Debug 0x0 402 wirelessproxd: [com.apple.bluetooth:WirelessProximity] Scan options kCBScanOptionAllowDuplicates => 1 changed: NO
2020-10-07 15:24:52.164077+0800 0xe65 Debug 0x0 402 wirelessproxd: [com.apple.bluetooth:WirelessProximity] Scan options kCBScanOptionActiveScan => 0 changed: NO
2020-10-07 15:24:52.164326+0800 0xe65 Info 0x0 402 wirelessproxd: [com.apple.bluetooth:WirelessProximity] Scan options dictionary changed: NO
2020-10-07 15:24:52.255680+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:InteropManager] [postStatusNotification] SCOActive: 0
2020-10-07 15:24:52.255724+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:InteropManager] [postStatusNotification] nonHIDConnections: 1
2020-10-07 15:24:52.255761+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:InteropManager] [postStatusNotification] A2DPActive: 0
2020-10-07 15:24:52.256703+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:InteropManager] statusDictionary: {
2020-10-07 15:24:52.256748+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:InteropManager] [updateAggressiveLEState] self.aggressiveLEActivityAllowed = YES
2020-10-07 15:24:52.259304+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:CBXPCManager] Client (Central (0) wirelessproxd:402) is requesting non-standard scan parameters (30/300)
2020-10-07 15:24:52.259371+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:bluetoothd] Scan client: scanForServices for type and peers :15
2020-10-07 15:24:52.259416+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:bluetoothd] Scan client: scanForServices for type and peers :15
2020-10-07 15:24:52.259458+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:bluetoothd] Scan client: scanForServices for type and peers :9
2020-10-07 15:24:52.259499+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:bluetoothd] Scan client: scanForServices with cache
2020-10-07 15:24:52.259534+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:bluetoothd] Scan client: latencyCriticalScan
2020-10-07 15:24:52.259581+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:bluetoothd] ScanManager observeValueForKeyPath changed 1
2020-10-07 15:24:52.260387+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:bluetoothd] Starting scan with priority 2 dupes:0 active:0 services:{(
2020-10-07 15:24:52.260488+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:bluetoothd] Starting scan with newAppleFilters: {(
2020-10-07 15:24:52.260535+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:bluetoothd] self.fullDutyCycleScan 0 using scanInterval: 300.00ms / scanWindow: 30.00ms
2020-10-07 15:24:52.261485+0800 0x3c6423 Debug 0x0 53546 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] Handle XPC message: <xpc object>
2020-10-07 15:24:52.261602+0800 0x3c6423 Default 0x0 53546 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] XPC: BTAudioState for (null)
2020-10-07 15:24:52.261664+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:bluetoothd] ScanManager: Unable to Set Scan Enable with error (0x000c)
2020-10-07 15:24:52.261655+0800 0x3c6423 Default 0x0 53546 bluetoothaudiod: debugInfo:{
2020-10-07 15:24:52.263059+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:InteropManager] [postStatusNotification] SCOActive: 0
2020-10-07 15:24:52.263089+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:InteropManager] [postStatusNotification] nonHIDConnections: 1
2020-10-07 15:24:52.263112+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:InteropManager] [postStatusNotification] A2DPActive: 0
2020-10-07 15:24:52.264073+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:InteropManager] statusDictionary: {
2020-10-07 15:24:52.264111+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:InteropManager] [updateAggressiveLEState] self.aggressiveLEActivityAllowed = YES
2020-10-07 15:24:52.267154+0800 0x3c6423 Debug 0x0 53546 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] Handle XPC message: <xpc object>
2020-10-07 15:24:52.267302+0800 0x3c6423 Default 0x0 53546 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] XPC: BTAudioState for (null)
2020-10-07 15:24:52.267380+0800 0x3c6423 Default 0x0 53546 bluetoothaudiod: debugInfo:{
2020-10-07 15:24:52.267563+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:bluetoothd] ScanManager: addMatchingRuleAllowed 1 [type unsignedCharValue] 15
2020-10-07 15:24:52.267612+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:bluetoothd] Filter: no peers provided
2020-10-07 15:24:52.267742+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:bluetoothd] peersArray (null)
2020-10-07 15:24:52.267784+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:bluetoothd] peersArray 0
2020-10-07 15:24:52.267825+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:bluetoothd] Adding general rule instead of individual rule for type: 15 for bluetooth address - require: 0, remaining: 100, capacity: 100
2020-10-07 15:24:52.276498+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:bluetoothd] ScanManager: Successfully enabled customer specific features (Only Apple Filters) with error (0x0000)
2020-10-07 15:24:52.277880+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:bluetoothd] ScanManager: Successfully Set Scan Parameters with error (0x0000)
2020-10-07 15:24:52.279029+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:bluetoothd] ScanManager: Successfully Set Scan Scan Enable ON with error (0x0000)
2020-10-07 15:24:52.279452+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:InteropManager] [postStatusNotification] SCOActive: 0
2020-10-07 15:24:52.279491+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:InteropManager] [postStatusNotification] nonHIDConnections: 1
2020-10-07 15:24:52.279526+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:InteropManager] [postStatusNotification] A2DPActive: 0
2020-10-07 15:24:52.280328+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:InteropManager] statusDictionary: {
2020-10-07 15:24:52.280371+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:InteropManager] [updateAggressiveLEState] self.aggressiveLEActivityAllowed = YES
2020-10-07 15:24:52.296020+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:InteropManager] statusDictionary: {
2020-10-07 15:24:52.296063+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:InteropManager] [updateAggressiveLEState] self.aggressiveLEActivityAllowed = YES
2020-10-07 15:24:52.298990+0800 0x3c6423 Debug 0x0 53546 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] Handle XPC message: <xpc object>
2020-10-07 15:24:52.299093+0800 0x3c6423 Default 0x0 53546 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] XPC: BTAudioState for (null)
2020-10-07 15:24:52.299147+0800 0x3c6423 Default 0x0 53546 bluetoothaudiod: debugInfo:{
2020-10-07 15:24:52.299279+0800 0x3c6423 Debug 0x0 53546 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] Handle XPC message: <xpc object>
2020-10-07 15:24:52.299396+0800 0x3c6423 Default 0x0 53546 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] XPC: BTAudioState for (null)
2020-10-07 15:24:52.299468+0800 0x3c6423 Default 0x0 53546 bluetoothaudiod: debugInfo:{
2020-10-07 15:24:52.299748+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:bluetoothd] ScanManager: addMatchingRuleAllowed 1 [type unsignedCharValue] 15
2020-10-07 15:24:52.299796+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:bluetoothd] Filter: no peers provided
2020-10-07 15:24:52.299832+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:bluetoothd] peersArray (null)
2020-10-07 15:24:52.299868+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:bluetoothd] peersArray 0
2020-10-07 15:24:52.299908+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:bluetoothd] Adding general rule instead of individual rule for type: 15 for bluetooth address - require: 0, remaining: 100, capacity: 100
2020-10-07 15:24:52.301040+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:bluetoothd] ScanManager: Successfully added advanced general matching rule for type: 15 with error (0x0000)
2020-10-07 15:24:52.301087+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:bluetoothd] ScanManager: addMatchingRuleAllowed 1 [type unsignedCharValue] 9
2020-10-07 15:24:52.301128+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:bluetoothd] Filter: no peers provided
2020-10-07 15:24:52.301163+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:bluetoothd] peersArray (null)
2020-10-07 15:24:52.301199+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:bluetoothd] peersArray 0
2020-10-07 15:24:52.301238+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:bluetoothd] Adding general rule instead of individual rule for type: 9 for bluetooth address - require: 0, remaining: 99, capacity: 100
2020-10-07 15:24:52.302246+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:bluetoothd] ScanManager: Successfully added advanced general matching rule for type: 9 with error (0x0000)
2020-10-07 15:24:52.309381+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:bluetoothd] ScanManager: Successfully Set Scan Scan Enable ON with error (0x0000)
2020-10-07 15:24:52.309807+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:InteropManager] [postStatusNotification] SCOActive: 0
2020-10-07 15:24:52.309850+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:InteropManager] [postStatusNotification] nonHIDConnections: 1
2020-10-07 15:24:52.309895+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:InteropManager] [postStatusNotification] A2DPActive: 0
2020-10-07 15:24:52.310866+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:InteropManager] statusDictionary: {
2020-10-07 15:24:52.310914+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:InteropManager] [updateAggressiveLEState] self.aggressiveLEActivityAllowed = YES
2020-10-07 15:24:52.314011+0800 0x3c6423 Debug 0x0 53546 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] Handle XPC message: <xpc object>
2020-10-07 15:24:52.314092+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:bluetoothd] ScanManager observeValueForKeyPath changed 0
2020-10-07 15:24:52.314147+0800 0x3c6423 Default 0x0 53546 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] XPC: BTAudioState for (null)
2020-10-07 15:24:52.314209+0800 0x3c6423 Default 0x0 53546 bluetoothaudiod: debugInfo:{
2020-10-07 15:24:52.316781+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:bluetoothd] ScanManager: Successfully Set Scan Scan Enable OFF with error (0x0000)
2020-10-07 15:24:52.331810+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:bluetoothd] ScanManager: addMatchingRuleAllowed 1 [type unsignedCharValue] 9
2020-10-07 15:24:52.331859+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:bluetoothd] Filter: no peers provided
2020-10-07 15:24:52.331895+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:bluetoothd] peersArray (null)
2020-10-07 15:24:52.331932+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:bluetoothd] peersArray 0
2020-10-07 15:24:52.331971+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:bluetoothd] Adding general rule instead of individual rule for type: 9 for bluetooth address - require: 0, remaining: 100, capacity: 100
2020-10-07 15:24:52.333089+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:bluetoothd] ScanManager: Successfully added advanced general matching rule for type: 9 with error (0x0000)
2020-10-07 15:24:52.333139+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:bluetoothd] ScanManager: addMatchingRuleAllowed 1 [type unsignedCharValue] 7
2020-10-07 15:24:52.333179+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:bluetoothd] Filter: no peers provided
2020-10-07 15:24:52.333215+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:bluetoothd] peersArray (null)
2020-10-07 15:24:52.333252+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:bluetoothd] peersArray 0
2020-10-07 15:24:52.333290+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:bluetoothd] Adding general rule instead of individual rule for type: 7 for bluetooth address - require: 0, remaining: 99, capacity: 100
2020-10-07 15:24:52.334295+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:bluetoothd] ScanManager: Successfully added advanced general matching rule for type: 7 with error (0x0000)
2020-10-07 15:24:52.334342+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:bluetoothd] ScanManager: addMatchingRuleAllowed 1 [type unsignedCharValue] 15
2020-10-07 15:24:52.334383+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:bluetoothd] Filter: no peers provided
2020-10-07 15:24:52.334417+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:bluetoothd] peersArray (null)
2020-10-07 15:24:52.334455+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:bluetoothd] peersArray 0
2020-10-07 15:24:52.334502+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:bluetoothd] Adding general rule instead of individual rule for type: 15 for bluetooth address - require: 0, remaining: 98, capacity: 100
2020-10-07 15:24:52.335571+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:bluetoothd] ScanManager: Successfully added advanced general matching rule for type: 15 with error (0x0000)
2020-10-07 15:24:52.342272+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:InteropManager] statusDictionary: {
2020-10-07 15:24:52.342316+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:InteropManager] [updateAggressiveLEState] self.aggressiveLEActivityAllowed = YES
2020-10-07 15:24:52.346390+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:bluetoothd] ScanManager observeValueForKeyPath changed 0
2020-10-07 15:24:52.346412+0800 0x3c6423 Debug 0x0 53546 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] Handle XPC message: <xpc object>
2020-10-07 15:24:52.346564+0800 0x3c6423 Default 0x0 53546 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] XPC: BTAudioState for (null)
2020-10-07 15:24:52.346622+0800 0x3c6423 Default 0x0 53546 bluetoothaudiod: debugInfo:{
2020-10-07 15:24:52.348339+0800 0x3c6423 Debug 0x0 53546 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] Handle XPC message: <xpc object>
2020-10-07 15:24:52.348446+0800 0x3c6423 Default 0x0 53546 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] XPC: BTAudioState for (null)
2020-10-07 15:24:52.348501+0800 0x3c6423 Default 0x0 53546 bluetoothaudiod: debugInfo:{
2020-10-07 15:24:52.349188+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:bluetoothd] ScanManager: Successfully Set Scan Scan Enable OFF with error (0x0000)
2020-10-07 15:24:52.349603+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:InteropManager] [postStatusNotification] SCOActive: 0
2020-10-07 15:24:52.349644+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:InteropManager] [postStatusNotification] nonHIDConnections: 1
2020-10-07 15:24:52.349680+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:InteropManager] [postStatusNotification] A2DPActive: 0
2020-10-07 15:24:52.350472+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:InteropManager] statusDictionary: {
2020-10-07 15:24:52.350516+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:InteropManager] [updateAggressiveLEState] self.aggressiveLEActivityAllowed = YES
2020-10-07 15:24:52.353069+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:CBXPCManager] Client (Central (0) wirelessproxd:402) is requesting non-standard scan parameters (30/40)
2020-10-07 15:24:52.353128+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:bluetoothd] Scan client: scanForServices for type and peers :15
2020-10-07 15:24:52.353171+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:bluetoothd] Scan client: scanForServices for type and peers :7
2020-10-07 15:24:52.353578+0800 0x3c6423 Debug 0x0 53546 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] Handle XPC message: <xpc object>
2020-10-07 15:24:52.353211+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:bluetoothd] Scan client: scanForServices for type and peers :15
2020-10-07 15:24:52.353681+0800 0x3c6423 Default 0x0 53546 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] XPC: BTAudioState for (null)
2020-10-07 15:24:52.353250+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:bluetoothd] Scan client: scanForServices for type and peers :9
2020-10-07 15:24:52.364694+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:bluetoothd] ScanManager: Successfully added advanced general matching rule for type: 9 with error (0x0000)
2020-10-07 15:24:52.364726+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:bluetoothd] ScanManager: addMatchingRuleAllowed 1 [type unsignedCharValue] 15
2020-10-07 15:24:52.364751+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:bluetoothd] Filter: no peers provided
2020-10-07 15:24:52.364772+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:bluetoothd] peersArray (null)
2020-10-07 15:24:52.364794+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:bluetoothd] peersArray 0
2020-10-07 15:24:52.364817+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:bluetoothd] Adding general rule instead of individual rule for type: 15 for bluetooth address - require: 0, remaining: 99, capacity: 100
2020-10-07 15:24:52.365611+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:bluetoothd] ScanManager: Successfully added advanced general matching rule for type: 15 with error (0x0000)
2020-10-07 15:24:52.365668+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:bluetoothd] ScanManager: addMatchingRuleAllowed 1 [type unsignedCharValue] 7
2020-10-07 15:24:52.365746+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:bluetoothd] Filter: no peers provided
2020-10-07 15:24:52.365783+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:bluetoothd] peersArray (null)
2020-10-07 15:24:52.365820+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:bluetoothd] peersArray 0
2020-10-07 15:24:52.365858+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:bluetoothd] Adding general rule instead of individual rule for type: 7 for bluetooth address - require: 0, remaining: 98, capacity: 100
2020-10-07 15:24:52.366696+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:bluetoothd] ScanManager: Successfully added advanced general matching rule for type: 7 with error (0x0000)
2020-10-07 15:24:52.373358+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:bluetoothd] ScanManager: Successfully Set Scan Parameters with error (0x0000)
2020-10-07 15:24:52.374604+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:bluetoothd] ScanManager: Successfully Set Scan Scan Enable ON with error (0x0000)
2020-10-07 15:24:52.374983+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:InteropManager] [postStatusNotification] SCOActive: 0
2020-10-07 15:24:52.375010+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:InteropManager] [postStatusNotification] nonHIDConnections: 1
2020-10-07 15:24:52.375032+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:InteropManager] [postStatusNotification] A2DPActive: 0
2020-10-07 15:24:52.375819+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:InteropManager] statusDictionary: {
2020-10-07 15:24:52.375866+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:InteropManager] [updateAggressiveLEState] self.aggressiveLEActivityAllowed = YES
2020-10-07 15:24:52.379574+0800 0x3c6423 Debug 0x0 53546 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] Handle XPC message: <xpc object>
2020-10-07 15:24:52.379681+0800 0x3c6423 Default 0x0 53546 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] XPC: BTAudioState for (null)
2020-10-07 15:24:52.379736+0800 0x3c6423 Default 0x0 53546 bluetoothaudiod: debugInfo:{
2020-10-07 15:24:52.379977+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:bluetoothd] ScanManager observeValueForKeyPath changed 0
2020-10-07 15:24:52.381417+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:bluetoothd] ScanManager: Successfully Set Scan Scan Enable OFF with error (0x0000)
2020-10-07 15:24:52.381796+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:InteropManager] [postStatusNotification] SCOActive: 0
2020-10-07 15:24:52.381834+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:InteropManager] [postStatusNotification] nonHIDConnections: 1
2020-10-07 15:24:52.381868+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:InteropManager] [postStatusNotification] A2DPActive: 0
2020-10-07 15:24:52.382639+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:InteropManager] statusDictionary: {
2020-10-07 15:24:52.382684+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:InteropManager] [updateAggressiveLEState] self.aggressiveLEActivityAllowed = YES
2020-10-07 15:24:52.389485+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:InteropManager] [postStatusNotification] SCOActive: 0
2020-10-07 15:24:52.389527+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:InteropManager] [postStatusNotification] nonHIDConnections: 1
2020-10-07 15:24:52.389561+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:InteropManager] [postStatusNotification] A2DPActive: 0
2020-10-07 15:24:52.390364+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:InteropManager] statusDictionary: {
2020-10-07 15:24:52.390405+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:InteropManager] [updateAggressiveLEState] self.aggressiveLEActivityAllowed = YES
2020-10-07 15:24:52.394141+0800 0x3c6423 Debug 0x0 53546 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] Handle XPC message: <xpc object>
2020-10-07 15:24:52.394347+0800 0x3c6423 Default 0x0 53546 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] XPC: BTAudioState for (null)
2020-10-07 15:24:52.394633+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:bluetoothd] ScanManager: addMatchingRuleAllowed 1 [type unsignedCharValue] 9
2020-10-07 15:24:52.394398+0800 0x3c6423 Default 0x0 53546 bluetoothaudiod: debugInfo:{
2020-10-07 15:24:52.394679+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:bluetoothd] Filter: no peers provided
2020-10-07 15:24:52.394714+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:bluetoothd] peersArray (null)
2020-10-07 15:24:52.394820+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:bluetoothd] peersArray 0
2020-10-07 15:24:52.394861+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:bluetoothd] Adding general rule instead of individual rule for type: 9 for bluetooth address - require: 0, remaining: 100, capacity: 100
2020-10-07 15:24:52.395438+0800 0x3c6423 Debug 0x0 53546 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] Handle XPC message: <xpc object>
2020-10-07 15:24:52.395532+0800 0x3c6423 Default 0x0 53546 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] XPC: BTAudioState for (null)
2020-10-07 15:24:52.395596+0800 0x3c6423 Default 0x0 53546 bluetoothaudiod: debugInfo:{
2020-10-07 15:24:52.396075+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:bluetoothd] ScanManager: Successfully added advanced general matching rule for type: 9 with error (0x0000)
2020-10-07 15:24:52.396125+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:bluetoothd] ScanManager: addMatchingRuleAllowed 1 [type unsignedCharValue] 7
2020-10-07 15:24:52.396639+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:bluetoothd] Filter: no peers provided
2020-10-07 15:24:52.396676+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:bluetoothd] peersArray (null)
2020-10-07 15:24:52.396709+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:bluetoothd] peersArray 0
2020-10-07 15:24:52.396744+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:bluetoothd] Adding general rule instead of individual rule for type: 7 for bluetooth address - require: 0, remaining: 99, capacity: 100
2020-10-07 15:24:52.397972+0800 0x3c6423 Debug 0x0 53546 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] Handle XPC message: <xpc object>
2020-10-07 15:24:52.398072+0800 0x3c6423 Default 0x0 53546 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] XPC: BTAudioState for (null)
2020-10-07 15:24:52.398072+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:bluetoothd] ScanManager: Successfully added advanced general matching rule for type: 7 with error (0x0000)
2020-10-07 15:24:52.398128+0800 0x3c6423 Default 0x0 53546 bluetoothaudiod: debugInfo:{
2020-10-07 15:24:52.398130+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:bluetoothd] ScanManager: addMatchingRuleAllowed 1 [type unsignedCharValue] 15
2020-10-07 15:24:52.398252+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:bluetoothd] Filter: no peers provided
2020-10-07 15:24:52.398316+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:bluetoothd] peersArray (null)
2020-10-07 15:24:52.398352+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:bluetoothd] peersArray 0
2020-10-07 15:24:52.398390+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:bluetoothd] Adding general rule instead of individual rule for type: 15 for bluetooth address - require: 0, remaining: 98, capacity: 100
2020-10-07 15:24:52.407557+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:bluetoothd] ScanManager: Successfully enabled customer specific features (Only Apple Filters) with error (0x0000)
2020-10-07 15:24:52.408393+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:bluetoothd] ScanManager: Successfully Set Scan Parameters with error (0x0000)
2020-10-07 15:24:52.409392+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:bluetoothd] ScanManager: Successfully Set Scan Scan Enable ON with error (0x0000)
2020-10-07 15:24:52.411500+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:InteropManager] [postStatusNotification] SCOActive: 0
2020-10-07 15:24:52.419367+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:bluetoothd] ScanManager: Successfully Set Scan Scan Enable OFF with error (0x0000)
2020-10-07 15:24:52.419785+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:InteropManager] [postStatusNotification] SCOActive: 0
2020-10-07 15:24:52.420031+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:InteropManager] [postStatusNotification] nonHIDConnections: 1
2020-10-07 15:24:52.420073+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:InteropManager] [postStatusNotification] A2DPActive: 0
2020-10-07 15:24:52.420876+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:InteropManager] statusDictionary: {
2020-10-07 15:24:52.420919+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:InteropManager] [updateAggressiveLEState] self.aggressiveLEActivityAllowed = YES
2020-10-07 15:24:52.423227+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:CBXPCManager] Client (Central (0) wirelessproxd:402) is requesting non-standard scan parameters (30/40)
2020-10-07 15:24:52.423288+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:bluetoothd] Scan client: scanForServices for type and peers :15
2020-10-07 15:24:52.423328+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:bluetoothd] Scan client: scanForServices for type and peers :7
2020-10-07 15:24:52.423373+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:bluetoothd] Scan client: scanForServices for type and peers :15
2020-10-07 15:24:52.423683+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:bluetoothd] Scan client: scanForServices for type and peers :9
2020-10-07 15:24:52.423724+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:bluetoothd] Scan client: scanForServices with cache
2020-10-07 15:24:52.423947+0800 0x3c6423 Debug 0x0 53546 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] Handle XPC message: <xpc object>
2020-10-07 15:24:52.423761+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:bluetoothd] Scan client: latencyCriticalScan
2020-10-07 15:24:52.424061+0800 0x3c6423 Default 0x0 53546 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] XPC: BTAudioState for (null)
2020-10-07 15:24:52.423806+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:bluetoothd] ScanManager observeValueForKeyPath changed 1
2020-10-07 15:24:52.424115+0800 0x3c6423 Default 0x0 53546 bluetoothaudiod: debugInfo:{
2020-10-07 15:24:52.425109+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:bluetoothd] Starting scan with priority 2 dupes:0 active:0 services:{(
2020-10-07 15:24:52.425225+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:bluetoothd] Starting scan with newAppleFilters: {(
2020-10-07 15:24:52.425271+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:bluetoothd] self.fullDutyCycleScan 0 using scanInterval: 40.00ms / scanWindow: 30.00ms
2020-10-07 15:24:52.438590+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:bluetoothd] ScanManager: Successfully added advanced general matching rule for type: 15 with error (0x0000)
2020-10-07 15:24:52.438696+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:bluetoothd] ScanManager: addMatchingRuleAllowed 1 [type unsignedCharValue] 7
2020-10-07 15:24:52.438737+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:bluetoothd] Filter: no peers provided
2020-10-07 15:24:52.438774+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:bluetoothd] peersArray (null)
2020-10-07 15:24:52.438810+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:bluetoothd] peersArray 0
2020-10-07 15:24:52.438849+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:bluetoothd] Adding general rule instead of individual rule for type: 7 for bluetooth address - require: 0, remaining: 98, capacity: 100
2020-10-07 15:24:52.439266+0800 0x3c6423 Debug 0x0 53546 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] Handle XPC message: <xpc object>
2020-10-07 15:24:52.439368+0800 0x3c6423 Default 0x0 53546 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] XPC: BTAudioState for (null)
2020-10-07 15:24:52.439421+0800 0x3c6423 Default 0x0 53546 bluetoothaudiod: debugInfo:{
2020-10-07 15:24:52.439921+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:bluetoothd] ScanManager: Successfully added advanced general matching rule for type: 7 with error (0x0000)
2020-10-07 15:24:52.440418+0800 0x3c6423 Debug 0x0 53546 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] Handle XPC message: <xpc object>
2020-10-07 15:24:52.440551+0800 0x3c6423 Default 0x0 53546 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] XPC: BTAudioState for (null)
2020-10-07 15:24:52.440632+0800 0x3c6423 Default 0x0 53546 bluetoothaudiod: debugInfo:{
2020-10-07 15:24:52.441289+0800 0x3c6423 Debug 0x0 53546 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] Handle XPC message: <xpc object>
2020-10-07 15:24:52.441425+0800 0x3c6423 Default 0x0 53546 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] XPC: BTAudioState for (null)
2020-10-07 15:24:52.441473+0800 0x3c6423 Default 0x0 53546 bluetoothaudiod: debugInfo:{
2020-10-07 15:24:52.445019+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:bluetoothd] ScanManager: Successfully enabled customer specific features (Only Apple Filters) with error (0x0000)
2020-10-07 15:24:52.445584+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:bluetoothd] ScanManager: Successfully Set Scan Parameters with error (0x0000)
2020-10-07 15:24:52.455884+0800 0x3c6423 Debug 0x0 53546 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] Handle XPC message: <xpc object>
2020-10-07 15:24:52.455997+0800 0x3c6423 Default 0x0 53546 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] XPC: BTAudioState for (null)
2020-10-07 15:24:52.456053+0800 0x3c6423 Default 0x0 53546 bluetoothaudiod: debugInfo:{
2020-10-07 15:24:52.456248+0800 0x3c6423 Debug 0x0 53546 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] Handle XPC message: <xpc object>
2020-10-07 15:24:52.456350+0800 0x3c6423 Default 0x0 53546 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] XPC: BTAudioState for (null)
2020-10-07 15:24:52.456400+0800 0x3c6423 Default 0x0 53546 bluetoothaudiod: debugInfo:{
2020-10-07 15:24:52.519014+0800 0x3c642e Debug 0x0 402 wirelessproxd: (CoreBluetooth) [com.apple.bluetooth:CoreBluetooth] Received XPC message 48: {
2020-10-07 15:24:52.522177+0800 0x3c6427 Debug 0x0 129 AirPlayXPCHelper: (BluetoothAudio) [com.apple.bluetooth:BTFigE] Found LE device with address 56-f0-ac-55-9b-de paired:0 inCase:0
2020-10-07 15:24:52.522228+0800 0x3c6427 Debug 0x0 129 AirPlayXPCHelper: (BluetoothAudio) [com.apple.bluetooth:BTFigE] Didn't find an entry for 56-f0-ac-55-9b-de
2020-10-07 15:24:53.113121+0800 0x3c6423 Default 0x0 53546 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] Update activity signaled:0
2020-10-07 15:24:53.113317+0800 0x3c6423 Default 0x0 53546 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] Quitting now
2020-10-07 15:24:53.114672+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:InteropManager] [bluetoothAudioNotification] notification: {
2020-10-07 15:24:53.116230+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:InteropManager] [postStatusNotification] SCOActive: 0
2020-10-07 15:24:53.116269+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:InteropManager] [postStatusNotification] nonHIDConnections: 1
2020-10-07 15:24:53.116302+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:InteropManager] [postStatusNotification] A2DPActive: 0
2020-10-07 15:24:53.117606+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:InteropManager] statusDictionary: {
2020-10-07 15:24:53.117645+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:InteropManager] [updateAggressiveLEState] self.aggressiveLEActivityAllowed = YES
2020-10-07 15:24:53.154899+0800 0x3c64cd Debug 0x0 53548 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] Handle XPC message: <xpc object>
2020-10-07 15:24:53.155010+0800 0x3c64cd Default 0x0 53548 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] XPC: BTAudioState for (null)
2020-10-07 15:24:53.155066+0800 0x3c64cd Default 0x0 53548 bluetoothaudiod: debugInfo:{
2020-10-07 15:24:53.155654+0800 0x3c64cd Debug 0x0 53548 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] Handle XPC message: <xpc object>
2020-10-07 15:24:53.155768+0800 0x3c64cd Default 0x0 53548 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] XPC: BTAudioState for (null)
2020-10-07 15:24:53.155819+0800 0x3c64cd Default 0x0 53548 bluetoothaudiod: debugInfo:{
2020-10-07 15:24:54.249740+0800 0x3c64cd Default 0x0 53548 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] Update activity signaled:0
2020-10-07 15:24:54.249941+0800 0x3c64cd Default 0x0 53548 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] Quitting now
2020-10-07 15:24:54.252768+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:InteropManager] [bluetoothAudioNotification] notification: {
2020-10-07 15:24:54.253197+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:InteropManager] [postStatusNotification] SCOActive: 0
2020-10-07 15:24:54.253224+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:InteropManager] [postStatusNotification] nonHIDConnections: 1
2020-10-07 15:24:54.253244+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:InteropManager] [postStatusNotification] A2DPActive: 0
2020-10-07 15:24:54.253917+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:InteropManager] statusDictionary: {
2020-10-07 15:24:54.253955+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:InteropManager] [updateAggressiveLEState] self.aggressiveLEActivityAllowed = YES
2020-10-07 15:24:54.275615+0800 0x3c64d3 Activity 0x241ab1 53549 bluetoothaudiod: (CoreFoundation) Loading Preferences From System CFPrefsD
2020-10-07 15:24:54.292345+0800 0x3c64d3 Debug 0x0 53549 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] Handle XPC message: <xpc object>
2020-10-07 15:24:54.292461+0800 0x3c64d3 Default 0x0 53549 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] XPC: BTAudioState for (null)
2020-10-07 15:24:54.292516+0800 0x3c64d3 Default 0x0 53549 bluetoothaudiod: debugInfo:{
2020-10-07 15:24:54.292803+0800 0x3c64d3 Debug 0x0 53549 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] Handle XPC message: <xpc object>
2020-10-07 15:24:54.292928+0800 0x3c64d3 Default 0x0 53549 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] XPC: BTAudioState for (null)
2020-10-07 15:24:54.292979+0800 0x3c64d3 Default 0x0 53549 bluetoothaudiod: debugInfo:{
2020-10-07 15:24:55.377942+0800 0x3c64d3 Default 0x0 53549 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] Update activity signaled:0
2020-10-07 15:24:55.378142+0800 0x3c64d3 Default 0x0 53549 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] Quitting now
2020-10-07 15:24:55.380665+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:InteropManager] [bluetoothAudioNotification] notification: {
2020-10-07 15:24:55.413070+0800 0x3c64db Activity 0x241b02 53550 bluetoothaudiod: (CoreFoundation) Loading Preferences From System CFPrefsD For Search List
2020-10-07 15:24:55.414823+0800 0x3c64db Debug 0x0 53550 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] [unregisterHCI] entry: 0x0
2020-10-07 15:24:55.414855+0800 0x3c64db Debug 0x0 53550 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] [registerHCI] entry (0x0)
2020-10-07 15:24:55.414939+0800 0x3c64db Debug 0x0 53550 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] [registerHCI] exit: 0x0
2020-10-07 15:24:55.415252+0800 0x3c64db Debug 0x0 53550 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] Handle XPC message: <xpc object>
2020-10-07 15:24:56.513281+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:InteropManager] [bluetoothAudioNotification] notification: {
2020-10-07 15:24:56.511085+0800 0x3c64db Default 0x0 53550 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] Update activity signaled:0
2020-10-07 15:24:56.511277+0800 0x3c64db Default 0x0 53550 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] Quitting now
2020-10-07 15:24:56.513815+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:InteropManager] [postStatusNotification] SCOActive: 0
2020-10-07 15:24:56.513855+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:InteropManager] [postStatusNotification] nonHIDConnections: 1
2020-10-07 15:24:56.513891+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:InteropManager] [postStatusNotification] A2DPActive: 0
2020-10-07 15:24:56.516095+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:InteropManager] statusDictionary: {
2020-10-07 15:24:56.516138+0800 0x2b1 Debug 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:InteropManager] [updateAggressiveLEState] self.aggressiveLEActivityAllowed = YES
2020-10-07 15:24:56.537462+0800 0x3c64ee Activity 0x241b40 53551 bluetoothaudiod: (CoreFoundation) Loading Preferences From System CFPrefsD For Search List
2020-10-07 15:24:56.537960+0800 0x3c5e9a Debug 0x241b40 133 cfprefsd: (CoreFoundation) [com.apple.cfprefsd:User Defaults Daemon] Process 53551 sent a request related to { bluetoothaudiod, user: root, kCFPreferencesCurrentHost, no container, managed: 1 }
2020-10-07 15:24:56.538052+0800 0x3c5e9a Debug 0x241b40 133 cfprefsd: (CoreFoundation) [com.apple.cfprefsd:User Defaults Daemon] Process 53551 sent a request related to { bluetoothaudiod, user: kCFPreferencesAnyUser, kCFPreferencesCurrentHost, no container, managed: 1 }
2020-10-07 15:24:56.538062+0800 0x3c627b Debug 0x241b40 133 cfprefsd: (CoreFoundation) [com.apple.cfprefsd:User Defaults Daemon] Process 53551 sent a request related to { bluetoothaudiod, user: root, kCFPreferencesCurrentHost, no container, managed: 0 }
2020-10-07 15:24:56.538111+0800 0x3c5e9a Debug 0x241b40 133 cfprefsd: (CoreFoundation) [com.apple.cfprefsd:User Defaults Daemon] Process 53551 sent a request related to { bluetoothaudiod, user: root, kCFPreferencesAnyHost, no container, managed: 0 }
2020-10-07 15:24:56.538154+0800 0x3c5e9a Debug 0x241b40 133 cfprefsd: (CoreFoundation) [com.apple.cfprefsd:User Defaults Daemon] Process 53551 read data for { bluetoothaudiod, root, kCFPreferencesAnyHost, no container, managed: 0 }, backed by /private/var/root/Library/Preferences/bluetoothaudiod.plist
2020-10-07 15:24:56.538357+0800 0x3c5f0a Debug 0x241b40 133 cfprefsd: (CoreFoundation) [com.apple.cfprefsd:User Defaults Daemon] Process 53551 sent a request related to { bluetoothaudiod, user: kCFPreferencesAnyUser, kCFPreferencesCurrentHost, no container, managed: 0 }
2020-10-07 15:24:56.555585+0800 0x3c64ee Debug 0x0 53551 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] Handle XPC message: <xpc object>
2020-10-07 15:24:56.555683+0800 0x3c64ee Default 0x0 53551 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] XPC: BTAudioState for (null)
2020-10-07 15:24:56.555737+0800 0x3c64ee Default 0x0 53551 bluetoothaudiod: debugInfo:{
2020-10-07 15:24:56.556113+0800 0x3c64ee Debug 0x0 53551 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] Handle XPC message: <xpc object>
2020-10-07 15:24:56.556222+0800 0x3c64ee Default 0x0 53551 bluetoothaudiod: [com.apple.bluetooth:bluetoothaudiod] XPC: BTAudioState for (null)
2020-10-07 15:24:56.556272+0800 0x3c64ee Default 0x0 53551 bluetoothaudiod: debugInfo:{
2020-10-07 15:24:57.141228+0800 0x2b1 Default 0x0 126 bluetoothd: (IOBluetooth) [com.apple.bluetooth:CBXPCManager] Address Not Found In Cache, Attempting To Resolve and Re-Search