-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathios_log.txt
4859 lines (4858 loc) · 577 KB
/
ios_log.txt
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
1 2019-05-04 15:33:43:963 - [iOSLog] [IOS_SYSLOG_ROW] NSExtensionPointName = "com.apple.usernotifications.content-extension";
2 2019-05-04 15:33:43:964 - [iOSLog] [IOS_SYSLOG_ROW] NSExtensionPointVersion = "1.0";
3 2019-05-04 15:33:43:964 - [iOSLog] [IOS_SYSLOG_ROW] NSExtensionVersion = "1.0";
4 2019-05-04 15:33:43:964 - [iOSLog] [IOS_SYSLOG_ROW] UNNotificationExtensionCategory = (
5 2019-05-04 15:33:43:964 - [iOSLog] [IOS_SYSLOG_ROW] "asd-notification-default"
6 2019-05-04 15:33:43:964 - [iOSLog] [IOS_SYSLOG_ROW] );
7 2019-05-04 15:33:43:964 - [iOSLog] [IOS_SYSLOG_ROW] UNNotificationExtensionCustomSectionIdentifier = "com.apple.AppStore";
8 2019-05-04 15:33:43:964 - [iOSLog] [IOS_SYSLOG_ROW] UNNotificationExtensionDefaultContentHidden = 1;
9 2019-05-04 15:33:43:965 - [iOSLog] [IOS_SYSLOG_ROW] UNNotificationExtensionInitialContentSizeRatio = "0.1";
10 2019-05-04 15:33:43:965 - [iOSLog] [IOS_SYSLOG_ROW] UNNotificationExtensionUserInteractionEnabled = 1;
11 2019-05-04 15:33:43:965 - [iOSLog] [IOS_SYSLOG_ROW] }
12 iOSLog
13 2019-05-04 15:33:43:969 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:45 iPhone-de-Tienda dataaccessd(DADaemonSupport)[552] <Notice>: DADAgentManager: Fetching active agents. count = 4, agents = <private>
14 2019-05-04 15:33:43:969 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:45 iPhone-de-Tienda lockdownd[68] <Notice>: handle_get_value: <private>
15 iOSLog
16 2019-05-04 15:33:43:969 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:45 iPhone-de-Tienda appstored[162] <Notice>: [WorkspaceTool]: Application: <private> has no item ID: 0
17 2019-05-04 15:33:43:969 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:45 iPhone-de-Tienda appstored[162] <Notice>: [WorkspaceTool]: Application: <private> has no item ID: 0
18 2019-05-04 15:33:43:969 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:45 iPhone-de-Tienda appstored[162] <Notice>: [WorkspaceTool]: Application: <private> has no item ID: 0
19 2019-05-04 15:33:43:969 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:45 iPhone-de-Tienda appstored[162] <Notice>: [WorkspaceTool]: Application: <private> has no item ID: 0
20 2019-05-04 15:33:43:970 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:45 iPhone-de-Tienda duetexpertd(ProactiveMagicalMoments)[185] <Notice>: discovered app prediction extension
21 2019-05-04 15:33:43:972 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:45 iPhone-de-Tienda duetexpertd(ProactiveMagicalMoments)[185] <Notice>: app prediction extension is enabled
22 2019-05-04 15:33:43:972 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:45 iPhone-de-Tienda duetexpertd(ProactiveMagicalMoments)[185] <Notice>: PMMAppsSettingsMonitor enabled, 1
23 2019-05-04 15:33:43:972 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:45 iPhone-de-Tienda pkd(CoreServices)[141] <Notice>: No plugins found to match query <private>
24 2019-05-04 15:33:43:972 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:45 iPhone-de-Tienda appstored[162] <Notice>: [WorkspaceTool]: Application: <private> has no item ID: 0
25 2019-05-04 15:33:43:972 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:45 iPhone-de-Tienda callservicesd[136] <Notice>: Successfully synchronized call directory extensions
26 2019-05-04 15:33:43:972 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:45 iPhone-de-Tienda callservicesd[136] <Notice>: Ending transaction for <private>. Transaction count is now 0
27 2019-05-04 15:33:43:972 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:45 iPhone-de-Tienda lockdownd[68] <Notice>: handle_get_value: <private>
28 2019-05-04 15:33:43:973 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:45 iPhone-de-Tienda lockdownd[68] <Notice>: handle_get_value: <private>
29 2019-05-04 15:33:43:973 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:45 iPhone-de-Tienda dataaccessd(DADaemonSupport)[552] <Notice>: DADAgentManager: Fetching active agents. count = 4, agents = <private>
30 2019-05-04 15:33:43:974 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:45 iPhone-de-Tienda dataaccessd(DADaemonSupport)[552] <Notice>: DADAgentManager: Fetching active agents. count = 4, agents = <private>
31 2019-05-04 15:33:43:974 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:45 iPhone-de-Tienda dataaccessd(DADaemonSupport)[552] <Notice>: DADAgentManager: Fetching active agents. count = 4, agents = <private>
32 iOSLog
33 2019-05-04 15:33:43:975 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:45 iPhone-de-Tienda lockdownd[68] <Notice>: handle_get_value: <private>
34 iOSLog
35 2019-05-04 15:33:43:976 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:45 iPhone-de-Tienda deleted[167] <Notice>: beginMatchingExtensionsWithAttributes:: got Plugins: <private>
36 2019-05-04 15:33:43:977 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:45 iPhone-de-Tienda appstored[162] <Notice>: [ODRApplicationCleanOperation]: Scanning and cleaning queue.
37 2019-05-04 15:33:43:977 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:45 iPhone-de-Tienda appstored[162] <Notice>: [WorkspaceTool]: Application: <private> has no item ID: 0
38 2019-05-04 15:33:43:977 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:45 iPhone-de-Tienda appstored[162] <Notice>: [WorkspaceTool]: Application: <private> has no item ID: 0
39 2019-05-04 15:33:43:978 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:45 iPhone-de-Tienda SpringBoard[55] <Notice>: SBRootFolderView initiating programmatic scroll to page: 0 animated: NO
40 2019-05-04 15:33:43:978 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:45 iPhone-de-Tienda appstored[162] <Notice>: [CleanupManager]: Update clean up complete with 0 changes
41 2019-05-04 15:33:43:979 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:45 iPhone-de-Tienda dataaccessd(DADaemonSupport)[552] <Notice>: DADAgentManager: Fetching active agents. count = 4, agents = <private>
42 iOSLog
43 iOSLog
44 iOSLog
45 2019-05-04 15:33:43:982 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:45 iPhone-de-Tienda SpringBoard(UserNotificationsServer)[55] <Notice>: Removing all attachments for bundle '<private>'
46 iOSLog
47 iOSLog
48 iOSLog
49 iOSLog
50 iOSLog
51 2019-05-04 15:33:43:985 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:45 iPhone-de-Tienda SpringBoard(UserNotificationsServer)[55] <Notice>: Setting topics for environment production:
52 2019-05-04 15:33:43:985 - [iOSLog] [IOS_SYSLOG_ROW] enabled: (
53 2019-05-04 15:33:43:985 - [iOSLog] [IOS_SYSLOG_ROW] )
54 2019-05-04 15:33:43:985 - [iOSLog] [IOS_SYSLOG_ROW] ignored: (
55 2019-05-04 15:33:43:985 - [iOSLog] [IOS_SYSLOG_ROW] )
56 2019-05-04 15:33:43:986 - [iOSLog] [IOS_SYSLOG_ROW] opportunistic:(
57 2019-05-04 15:33:43:986 - [iOSLog] [IOS_SYSLOG_ROW] "com.apple.Maps",
58 2019-05-04 15:33:43:986 - [iOSLog] [IOS_SYSLOG_ROW] "com.apple.icloud-container.com.apple.Maps"
59 2019-05-04 15:33:43:986 - [iOSLog] [IOS_SYSLOG_ROW] )
60 iOSLog
61 iOSLog
62 iOSLog
63 iOSLog
64 2019-05-04 15:33:43:988 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:45 iPhone-de-Tienda searchd(Search)[169] <Notice>: Processing app:<private>, bundleType:<private>
65 2019-05-04 15:33:43:989 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:45 iPhone-de-Tienda searchd(Search)[169] <Notice>: Processing app:<private>, bundleType:<private>
66 2019-05-04 15:33:43:990 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:45 iPhone-de-Tienda dataaccessd(DADaemonSupport)[552] <Notice>: DADAgentManager: Fetching active agents. count = 4, agents = <private>
67 2019-05-04 15:33:43:990 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:45 iPhone-de-Tienda searchd(Search)[169] <Notice>: Processing app:<private>, bundleType:<private>
68 iOSLog
69 2019-05-04 15:33:43:991 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:45 iPhone-de-Tienda searchd(Search)[169] <Notice>: Processing app:<private>, bundleType:<private>
70 2019-05-04 15:33:43:991 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:45 iPhone-de-Tienda searchd(Search)[169] <Notice>: Processing app:<private>, bundleType:<private>
71 2019-05-04 15:33:43:992 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:45 iPhone-de-Tienda searchd(Search)[169] <Notice>: Processing app:<private>, bundleType:<private>
72 2019-05-04 15:33:43:992 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:45 iPhone-de-Tienda dataaccessd(DADaemonSupport)[552] <Notice>: DADAgentManager: Fetching active agents. count = 4, agents = <private>
73 2019-05-04 15:33:43:993 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:45 iPhone-de-Tienda searchd(Search)[169] <Notice>: Processing app:<private>, bundleType:<private>
74 2019-05-04 15:33:43:993 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:45 iPhone-de-Tienda searchd(Search)[169] <Notice>: Processing app:<private>, bundleType:<private>
75 iOSLog
76 iOSLog
77 2019-05-04 15:33:43:995 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:45 iPhone-de-Tienda searchd(Search)[169] <Notice>: Processing app:<private>, bundleType:<private>
78 2019-05-04 15:33:43:995 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:45 iPhone-de-Tienda dataaccessd(DADaemonSupport)[552] <Notice>: DADAgentManager: Fetching active agents. count = 4, agents = <private>
79 2019-05-04 15:33:43:996 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:45 iPhone-de-Tienda searchd(Search)[169] <Notice>: Processing app:<private>, bundleType:<private>
80 2019-05-04 15:33:43:996 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:45 iPhone-de-Tienda searchd(Search)[169] <Notice>: Processing app:<private>, bundleType:<private>
81 2019-05-04 15:33:43:997 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:45 iPhone-de-Tienda searchd(Search)[169] <Notice>: Processing app:<private>, bundleType:<private>
82 2019-05-04 15:33:43:997 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:45 iPhone-de-Tienda searchd(Search)[169] <Notice>: Processing app:<private>, bundleType:<private>
83 2019-05-04 15:33:43:998 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:45 iPhone-de-Tienda searchd[169] <Notice>: Deleted all items for bundleID:<private>, protectionClass:NSFileProtectionComplete
84 2019-05-04 15:33:43:998 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:45 iPhone-de-Tienda searchd(Search)[169] <Notice>: Processing app:<private>, bundleType:<private>
85 2019-05-04 15:33:43:998 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:45 iPhone-de-Tienda searchd(Search)[169] <Notice>: Processing app:<private>, bundleType:<private>
86 2019-05-04 15:33:43:999 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:45 iPhone-de-Tienda searchd(Search)[169] <Notice>: Processing app:<private>, bundleType:<private>
87 2019-05-04 15:33:43:999 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:45 iPhone-de-Tienda searchd(Search)[169] <Notice>: Processing app:<private>, bundleType:<private>
88 2019-05-04 15:33:43:999 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:45 iPhone-de-Tienda searchd(Search)[169] <Notice>: Processing app:<private>, bundleType:<private>
89 iOSLog
90 2019-05-04 15:33:44:000 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:45 iPhone-de-Tienda searchd(Search)[169] <Notice>: Processing app:<private>, bundleType:<private>
91 2019-05-04 15:33:44:001 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:45 iPhone-de-Tienda searchd(Search)[169] <Notice>: Processing app:<private>, bundleType:<private>
92 2019-05-04 15:33:44:001 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:45 iPhone-de-Tienda wifid[45] <Notice>: WiFi:[578676825.608715]: Enable WoW requested by "dataaccessd"
93 2019-05-04 15:33:44:002 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:45 iPhone-de-Tienda apsd[95] <Notice>: _WiFiManagerClientWoWStateChangedCallback WoW isEnabled YES WoW state <private>
94 2019-05-04 15:33:44:002 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:45 iPhone-de-Tienda apsd[95] <Notice>: 0x10261f3b0 _WiFiManagerClientWoWStateChangedCallback shouldUseDualMode NO isWoWEnabled YES
95 2019-05-04 15:33:44:003 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:45 iPhone-de-Tienda apsd[95] <Notice>: _WiFiManagerClientWoWStateChangedCallback WoW isEnabled YES WoW state <private>
96 2019-05-04 15:33:44:003 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:45 iPhone-de-Tienda apsd[95] <Notice>: 0x102606d40 _WiFiManagerClientWoWStateChangedCallback shouldUseDualMode YES isWoWEnabled YES
97 2019-05-04 15:33:44:003 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:45 iPhone-de-Tienda searchd(Search)[169] <Notice>: Processing app:<private>, bundleType:<private>
98 2019-05-04 15:33:44:004 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:45 iPhone-de-Tienda SpringBoard(Search)[55] <Notice>: SBSRegisterDisplayIdentifiersChanged
99 2019-05-04 15:33:44:004 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:45 iPhone-de-Tienda searchd(Search)[169] <Notice>: Processing app:<private>, bundleType:<private>
100 2019-05-04 15:33:44:005 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:45 iPhone-de-Tienda searchd(Search)[169] <Notice>: Processing app:<private>, bundleType:<private>
101 2019-05-04 15:33:44:005 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:45 iPhone-de-Tienda searchd(Search)[169] <Notice>: Processing app:<private>, bundleType:<private>
102 2019-05-04 15:33:44:005 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:45 iPhone-de-Tienda searchd(Search)[169] <Notice>: Processing app:<private>, bundleType:<private>
103 2019-05-04 15:33:44:006 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:45 iPhone-de-Tienda searchd(Search)[169] <Notice>: Processing app:<private>, bundleType:<private>
104 iOSLog
105 iOSLog
106 2019-05-04 15:33:44:008 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:45 iPhone-de-Tienda SpringBoard(Search)[55] <Notice>: Apps Source fired data:2
107 2019-05-04 15:33:44:008 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:45 iPhone-de-Tienda searchd[169] <Notice>: Deleted all items for bundleID:<private>, protectionClass:NSFileProtectionCompleteUnlessOpen
108 iOSLog
109 2019-05-04 15:33:44:009 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:45 iPhone-de-Tienda dataaccessd(WebBookmarks)[552] <Notice>: Process com.apple.dataaccess.dataaccessd did lock bookmarks database
110 2019-05-04 15:33:44:009 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:45 iPhone-de-Tienda SpringBoard(Search)[55] <Notice>: Processing app:<private>, bundleType:<private>
111 2019-05-04 15:33:44:010 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:45 iPhone-de-Tienda SpringBoard(Search)[55] <Notice>: Processing app:<private>, bundleType:<private>
112 iOSLog
113 2019-05-04 15:33:44:011 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:45 iPhone-de-Tienda SpringBoard(Search)[55] <Notice>: Processing app:<private>, bundleType:<private>
114 2019-05-04 15:33:44:011 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:45 iPhone-de-Tienda SpringBoard(Search)[55] <Notice>: Processing app:<private>, bundleType:<private>
115 2019-05-04 15:33:44:012 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:45 iPhone-de-Tienda SpringBoard(Search)[55] <Notice>: Processing app:<private>, bundleType:<private>
116 2019-05-04 15:33:44:012 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:45 iPhone-de-Tienda SpringBoard(Search)[55] <Notice>: Processing app:<private>, bundleType:<private>
117 2019-05-04 15:33:44:013 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:45 iPhone-de-Tienda SpringBoard(Search)[55] <Notice>: Processing app:<private>, bundleType:<private>
118 2019-05-04 15:33:44:013 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:45 iPhone-de-Tienda SpringBoard(Search)[55] <Notice>: Processing app:<private>, bundleType:<private>
119 2019-05-04 15:33:44:013 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:45 iPhone-de-Tienda SpringBoard(Search)[55] <Notice>: Processing app:<private>, bundleType:<private>
120 2019-05-04 15:33:44:014 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:45 iPhone-de-Tienda SpringBoard(Search)[55] <Notice>: Processing app:<private>, bundleType:<private>
121 iOSLog
122 2019-05-04 15:33:44:015 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:45 iPhone-de-Tienda SpringBoard(Search)[55] <Notice>: Processing app:<private>, bundleType:<private>
123 2019-05-04 15:33:44:015 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:45 iPhone-de-Tienda searchd[169] <Notice>: _deleteAllItemsForBundleIDs:<private>
124 2019-05-04 15:33:44:016 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:45 iPhone-de-Tienda SpringBoard(Search)[55] <Notice>: Processing app:<private>, bundleType:<private>
125 2019-05-04 15:33:44:016 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:45 iPhone-de-Tienda searchd[169] <Notice>: _allInstalledApplicationsIdentifiers
126 2019-05-04 15:33:44:016 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:45 iPhone-de-Tienda SpringBoard(Search)[55] <Notice>: Processing app:<private>, bundleType:<private>
127 2019-05-04 15:33:44:017 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:45 iPhone-de-Tienda SpringBoard(Search)[55] <Notice>: Processing app:<private>, bundleType:<private>
128 2019-05-04 15:33:44:017 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:45 iPhone-de-Tienda SpringBoard(Search)[55] <Notice>: Processing app:<private>, bundleType:<private>
129 2019-05-04 15:33:44:017 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:45 iPhone-de-Tienda SpringBoard(Search)[55] <Notice>: Processing app:<private>, bundleType:<private>
130 2019-05-04 15:33:44:018 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:45 iPhone-de-Tienda SpringBoard(Search)[55] <Notice>: Processing app:<private>, bundleType:<private>
131 2019-05-04 15:33:44:018 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:45 iPhone-de-Tienda SpringBoard(Search)[55] <Notice>: Processing app:<private>, bundleType:<private>
132 2019-05-04 15:33:44:019 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:45 iPhone-de-Tienda SpringBoard(Search)[55] <Notice>: Processing app:<private>, bundleType:<private>
133 2019-05-04 15:33:44:019 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:45 iPhone-de-Tienda SpringBoard(Search)[55] <Notice>: Processing app:<private>, bundleType:<private>
134 2019-05-04 15:33:44:020 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:45 iPhone-de-Tienda dataaccessd(WebBookmarks)[552] <Notice>: Looking up migration state for device identifier <private>
135 2019-05-04 15:33:44:020 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:45 iPhone-de-Tienda SpringBoard(Search)[55] <Notice>: Processing app:<private>, bundleType:<private>
136 2019-05-04 15:33:44:020 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:45 iPhone-de-Tienda dataaccessd(WebBookmarks)[552] <Notice>: Local migration state read from database 3
137 2019-05-04 15:33:44:021 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:45 iPhone-de-Tienda SpringBoard(Search)[55] <Notice>: Processing app:<private>, bundleType:<private>
138 2019-05-04 15:33:44:021 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:45 iPhone-de-Tienda SpringBoard(Search)[55] <Notice>: Processing app:<private>, bundleType:<private>
139 2019-05-04 15:33:44:022 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:45 iPhone-de-Tienda dataaccessd(WebBookmarks)[552] <Notice>: Setting sync notification type: 1
140 2019-05-04 15:33:44:022 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:45 iPhone-de-Tienda SpringBoard(Search)[55] <Notice>: Processing app:<private>, bundleType:<private>
141 2019-05-04 15:33:44:022 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:45 iPhone-de-Tienda dataaccessd(WebBookmarks)[552] <Notice>: Looking up migration state for device identifier <private>
142 2019-05-04 15:33:44:023 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:45 iPhone-de-Tienda SpringBoard(Search)[55] <Notice>: Processing app:<private>, bundleType:<private>
143 2019-05-04 15:33:44:023 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:45 iPhone-de-Tienda SpringBoard(Search)[55] <Notice>: Processing app:<private>, bundleType:<private>
144 2019-05-04 15:33:44:024 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:45 iPhone-de-Tienda dataaccessd(WebBookmarks)[552] <Notice>: Local migration state read from database 3
145 2019-05-04 15:33:44:024 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:45 iPhone-de-Tienda SpringBoard(Search)[55] <Notice>: Processing app:<private>, bundleType:<private>
146 2019-05-04 15:33:44:025 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:45 iPhone-de-Tienda dataaccessd(WebBookmarks)[552] <Notice>: Process com.apple.dataaccess.dataaccessd did unlock bookmarks database
147 2019-05-04 15:33:44:025 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:45 iPhone-de-Tienda SpringBoard(Search)[55] <Notice>: Processing app:<private>, bundleType:<private>
148 2019-05-04 15:33:44:025 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:45 iPhone-de-Tienda SpringBoard(Search)[55] <Notice>: Skip restricted app <private>
149 2019-05-04 15:33:44:026 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:45 iPhone-de-Tienda SpringBoard(Search)[55] <Notice>: Processing app:<private>, bundleType:<private>
150 2019-05-04 15:33:44:026 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:45 iPhone-de-Tienda searchd(Search)[169] <Notice>: Processing app:<private>, bundleType:<private>
151 2019-05-04 15:33:44:027 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:45 iPhone-de-Tienda SpringBoard(Search)[55] <Notice>: Processing app:<private>, bundleType:<private>
152 2019-05-04 15:33:44:027 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:45 iPhone-de-Tienda SpringBoard(Search)[55] <Notice>: Processing app:<private>, bundleType:<private>
153 2019-05-04 15:33:44:027 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:45 iPhone-de-Tienda SpringBoard(Search)[55] <Notice>: Processing app:<private>, bundleType:<private>
154 2019-05-04 15:33:44:028 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:45 iPhone-de-Tienda searchd(Search)[169] <Notice>: Processing app:<private>, bundleType:<private>
155 2019-05-04 15:33:44:028 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:45 iPhone-de-Tienda SpringBoard(Search)[55] <Notice>: Processing app:<private>, bundleType:<private>
156 2019-05-04 15:33:44:028 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:45 iPhone-de-Tienda dataaccessd(DataAccess)[552] <Error>: Couldn't open bookmark db, someone else has a lock on it
157 2019-05-04 15:33:44:029 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:45 iPhone-de-Tienda SpringBoard(Search)[55] <Notice>: Processing app:<private>, bundleType:<private>
158 2019-05-04 15:33:44:029 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:45 iPhone-de-Tienda SpringBoard(Search)[55] <Notice>: Skip restricted app <private>
159 2019-05-04 15:33:44:030 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:45 iPhone-de-Tienda SpringBoard(Search)[55] <Notice>: Processing app:<private>, bundleType:<private>
160 2019-05-04 15:33:44:030 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:45 iPhone-de-Tienda SpringBoard(Search)[55] <Notice>: Processing app:<private>, bundleType:<private>
161 2019-05-04 15:33:44:030 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:45 iPhone-de-Tienda SpringBoard(Search)[55] <Notice>: Processing app:<private>, bundleType:<private>
162 2019-05-04 15:33:44:031 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:45 iPhone-de-Tienda SpringBoard(Search)[55] <Notice>: Processing app:<private>, bundleType:<private>
163 2019-05-04 15:33:44:031 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:45 iPhone-de-Tienda searchd(CoreSpotlight)[169] <Notice>: Couldn't get the bundleId for the index extension:<private> at (null)
164 2019-05-04 15:33:44:031 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:45 iPhone-de-Tienda SpringBoard(Search)[55] <Notice>: Processing app:<private>, bundleType:<private>
165 2019-05-04 15:33:44:032 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:45 iPhone-de-Tienda SpringBoard(Search)[55] <Notice>: Processing app:<private>, bundleType:<private>
166 2019-05-04 15:33:44:032 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:45 iPhone-de-Tienda SpringBoard(Search)[55] <Notice>: Processing app:<private>, bundleType:<private>
167 2019-05-04 15:33:44:032 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:45 iPhone-de-Tienda SpringBoard(Search)[55] <Notice>: Processing app:<private>, bundleType:<private>
168 2019-05-04 15:33:44:033 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:45 iPhone-de-Tienda SpringBoard(Search)[55] <Notice>: Processing app:<private>, bundleType:<private>
169 2019-05-04 15:33:44:033 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:45 iPhone-de-Tienda SpringBoard(Search)[55] <Notice>: Processing app:<private>, bundleType:<private>
170 2019-05-04 15:33:44:034 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:45 iPhone-de-Tienda SpringBoard(Search)[55] <Notice>: Finished getting 44 applications, took 0.036917 seconds updateApps ? YES
171 2019-05-04 15:33:44:034 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:45 iPhone-de-Tienda searchd(Search)[169] <Notice>: Skip restricted app <private>
172 2019-05-04 15:33:44:034 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:45 iPhone-de-Tienda searchd(Search)[169] <Notice>: Processing app:<private>, bundleType:<private>
173 2019-05-04 15:33:44:034 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:45 iPhone-de-Tienda SpringBoard(Spotlight)[55] <Notice>: Send apps:2
174 2019-05-04 15:33:44:035 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:45 iPhone-de-Tienda searchd(Search)[169] <Notice>: Processing app:<private>, bundleType:<private>
175 2019-05-04 15:33:44:035 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:45 iPhone-de-Tienda searchd(Search)[169] <Notice>: Processing app:<private>, bundleType:<private>
176 iOSLog
177 2019-05-04 15:33:44:036 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:45 iPhone-de-Tienda SpringBoard(Search)[55] <Error>: Reply Error on 0x280dc4fc0:Connection interrupted
178 2019-05-04 15:33:44:036 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:45 iPhone-de-Tienda searchd(Search)[169] <Notice>: Processing app:<private>, bundleType:<private>
179 2019-05-04 15:33:44:037 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:45 iPhone-de-Tienda searchd(CoreSpotlight)[169] <Notice>: Couldn't get the bundleId for the index extension:<private> at (null)
180 2019-05-04 15:33:44:037 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:45 iPhone-de-Tienda searchd(Search)[169] <Notice>: Processing app:<private>, bundleType:<private>
181 iOSLog
182 2019-05-04 15:33:44:038 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:45 iPhone-de-Tienda searchd(Search)[169] <Notice>: Processing app:<private>, bundleType:<private>
183 2019-05-04 15:33:44:038 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:45 iPhone-de-Tienda searchd(Search)[169] <Notice>: Skip restricted app <private>
184 2019-05-04 15:33:44:038 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:45 iPhone-de-Tienda searchd(Search)[169] <Notice>: Processing app:<private>, bundleType:<private>
185 2019-05-04 15:33:44:039 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:45 iPhone-de-Tienda searchd(Search)[169] <Notice>: Processing app:<private>, bundleType:<private>
186 2019-05-04 15:33:44:039 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:45 iPhone-de-Tienda searchd(Search)[169] <Notice>: Processing app:<private>, bundleType:<private>
187 2019-05-04 15:33:44:040 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:45 iPhone-de-Tienda searchd(Search)[169] <Notice>: Processing app:<private>, bundleType:<private>
188 2019-05-04 15:33:44:040 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:45 iPhone-de-Tienda searchd(Search)[169] <Notice>: Processing app:<private>, bundleType:<private>
189 2019-05-04 15:33:44:041 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:45 iPhone-de-Tienda searchd(Search)[169] <Notice>: Processing app:<private>, bundleType:<private>
190 2019-05-04 15:33:44:041 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:45 iPhone-de-Tienda searchd(Search)[169] <Notice>: Processing app:<private>, bundleType:<private>
191 2019-05-04 15:33:44:041 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:45 iPhone-de-Tienda searchd(Search)[169] <Notice>: Processing app:<private>, bundleType:<private>
192 2019-05-04 15:33:44:042 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:45 iPhone-de-Tienda searchd(Search)[169] <Notice>: Processing app:<private>, bundleType:<private>
193 2019-05-04 15:33:44:042 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:45 iPhone-de-Tienda searchd(Search)[169] <Notice>: Processing app:<private>, bundleType:<private>
194 2019-05-04 15:33:44:043 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:45 iPhone-de-Tienda searchd(Search)[169] <Notice>: Finished getting 44 applications, took 0.125955 seconds updateApps ? YES
195 2019-05-04 15:33:44:043 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:45 iPhone-de-Tienda searchd[169] <Notice>: Apps changed: <private>
196 2019-05-04 15:33:44:043 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:45 iPhone-de-Tienda searchd(Search)[169] <Notice>: Setting apps 44 existing __fastApps 44
197 iOSLog
198 2019-05-04 15:33:44:044 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:45 iPhone-de-Tienda searchd[169] <Notice>: Apps changed: <private>
199 iOSLog
200 iOSLog
201 iOSLog
202 iOSLog
203 iOSLog
204 2019-05-04 15:33:44:048 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:45 iPhone-de-Tienda dataaccessd(DADaemonCardDAV)[552] <Notice>: Default source com.apple.account.AppleAccount
205 2019-05-04 15:33:44:049 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:45 iPhone-de-Tienda dataaccessd(DADaemonCardDAV)[552] <Notice>: 0 changes for account iCloud (com.apple.account.AppleAccount)
206 2019-05-04 15:33:44:049 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:45 iPhone-de-Tienda dataaccessd(DADaemonCardDAV)[552] <Notice>: Syncing: no actions from local contact store
207 2019-05-04 15:33:44:050 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:45 iPhone-de-Tienda dataaccessd(WebBookmarks)[552] <Notice>: Process com.apple.dataaccess.dataaccessd did lock bookmarks database
208 2019-05-04 15:33:44:050 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:45 iPhone-de-Tienda duetexpertd(AppPredictionInternal)[185] <Notice>: Actions prediction cache will be updated after delay = 2.677527
209 2019-05-04 15:33:44:050 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:45 iPhone-de-Tienda duetexpertd[185] <Notice>: --- handled event <private> ---
210 2019-05-04 15:33:44:051 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:45 iPhone-de-Tienda dataaccessd(WebBookmarks)[552] <Notice>: Looking up migration state for device identifier <private>
211 2019-05-04 15:33:44:051 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:45 iPhone-de-Tienda dataaccessd(WebBookmarks)[552] <Notice>: Local migration state read from database 3
212 2019-05-04 15:33:44:052 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:45 iPhone-de-Tienda dataaccessd(WebBookmarks)[552] <Notice>: Setting sync notification type: 1
213 2019-05-04 15:33:44:053 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:45 iPhone-de-Tienda dataaccessd(WebBookmarks)[552] <Notice>: Looking up migration state for device identifier <private>
214 2019-05-04 15:33:44:053 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:45 iPhone-de-Tienda dataaccessd(WebBookmarks)[552] <Notice>: Local migration state read from database 3
215 iOSLog
216 2019-05-04 15:33:44:054 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:45 iPhone-de-Tienda dataaccessd(WebBookmarks)[552] <Notice>: Process com.apple.dataaccess.dataaccessd did unlock bookmarks database
217 2019-05-04 15:33:44:055 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:45 iPhone-de-Tienda duetexpertd(AppPredictionInternal)[185] <Notice>: Actions prediction cache will be updated after delay = 2.638057
218 2019-05-04 15:33:44:055 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:45 iPhone-de-Tienda dataaccessd(DataAccess)[552] <Error>: Couldn't open bookmark db, someone else has a lock on it
219 iOSLog
220 iOSLog
221 iOSLog
222 iOSLog
223 2019-05-04 15:33:44:058 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:45 iPhone-de-Tienda dataaccessd(CFNetwork)[552] <Notice>: CFNetwork-AOSKit: Reaching out to AOSKit for X-mobile me token
224 2019-05-04 15:33:44:059 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:45 iPhone-de-Tienda dataaccessd(CFNetwork)[552] <Notice>: CFNetwork-AOSKit: Applied X-mobile me auth to request
225 2019-05-04 15:33:44:059 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:45 iPhone-de-Tienda dataaccessd(CFNetwork)[552] <Notice>: Task <9F303664-2230-4724-BC10-A8D096766CFA>.<0> now using Connection 281
226 2019-05-04 15:33:44:060 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:45 iPhone-de-Tienda dataaccessd(CFNetwork)[552] <Notice>: Task <9F303664-2230-4724-BC10-A8D096766CFA>.<0> sent request, body D
227 2019-05-04 15:33:44:060 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:45 iPhone-de-Tienda dataaccessd(ApplePushService)[552] <Notice>: <private> asked for publicToken, got <private>
228 iOSLog
229 2019-05-04 15:33:44:061 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:45 iPhone-de-Tienda dataaccessd(CFNetwork)[552] <Notice>: CFNetwork-AOSKit: Reaching out to AOSKit for X-mobile me token
230 2019-05-04 15:33:44:062 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:45 iPhone-de-Tienda dataaccessd(CFNetwork)[552] <Notice>: CFNetwork-AOSKit: Applied X-mobile me auth to request
231 2019-05-04 15:33:44:062 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:45 iPhone-de-Tienda dataaccessd(CFNetwork)[552] <Notice>: Task <D5188E19-1F45-4834-B50C-9F5E4995B73A>.<0> now using Connection 282
232 2019-05-04 15:33:44:063 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:45 iPhone-de-Tienda dataaccessd(CFNetwork)[552] <Notice>: Task <D5188E19-1F45-4834-B50C-9F5E4995B73A>.<0> sent request, body D
233 2019-05-04 15:33:44:063 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:45 iPhone-de-Tienda trustd[108] <Notice>: cert[0]: MissingIntermediate =(leaf)[force]> 0
234 2019-05-04 15:33:44:064 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:45 iPhone-de-Tienda trustd[108] <Notice>: cert[0]: NonEmptySubject =(path)[]> 0
235 2019-05-04 15:33:44:064 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:45 iPhone-de-Tienda trustd[108] <Notice>: cert[0]: MissingIntermediate =(leaf)[force]> 0
236 2019-05-04 15:33:44:064 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:45 iPhone-de-Tienda trustd[108] <Notice>: cert[0]: NonEmptySubject =(path)[]> 0
237 2019-05-04 15:33:44:064 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:45 iPhone-de-Tienda lockdownd[68] <Notice>: handle_start_service: <private>
238 2019-05-04 15:33:44:065 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:45 iPhone-de-Tienda lockdownd[68] <Notice>: MAEGate_GetBrickState: <private>
239 2019-05-04 15:33:44:065 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:45 iPhone-de-Tienda lockdownd[68] <Notice>: spawn_xpc_service: <private>
240 2019-05-04 15:33:44:065 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:45 iPhone-de-Tienda lockdownd[68] <Notice>: spawn_xpc_service_block_invoke: <private>
241 2019-05-04 15:33:44:065 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:45 iPhone-de-Tienda lockdownd[68] <Notice>: spawn_xpc_service_block_invoke: <private>
242 2019-05-04 15:33:44:066 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:45 iPhone-de-Tienda lockdownd[68] <Notice>: handle_get_value: <private>
243 2019-05-04 15:33:44:066 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:45 iPhone-de-Tienda lockdownd[68] <Notice>: handle_get_value: <private>
244 2019-05-04 15:33:44:083 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:45 iPhone-de-Tienda lockdownd[68] <Notice>: handle_get_value: <private>
245 2019-05-04 15:33:44:085 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:45 iPhone-de-Tienda lockdownd[68] <Notice>: handle_get_value: <private>
246 2019-05-04 15:33:44:160 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:45 iPhone-de-Tienda trustd[108] <Notice>: cert[0]: MissingIntermediate =(leaf)[force]> 0
247 2019-05-04 15:33:44:161 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:45 iPhone-de-Tienda trustd[108] <Notice>: cert[0]: NonEmptySubject =(path)[]> 0
248 2019-05-04 15:33:44:167 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:45 iPhone-de-Tienda lockdownd[68] <Notice>: handle_start_service: <private>
249 2019-05-04 15:33:44:168 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:45 iPhone-de-Tienda lockdownd[68] <Notice>: MAEGate_GetBrickState: <private>
250 2019-05-04 15:33:44:169 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:45 iPhone-de-Tienda lockdownd[68] <Notice>: spawn_xpc_service: <private>
251 2019-05-04 15:33:44:171 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:45 iPhone-de-Tienda lockdownd[68] <Notice>: spawn_xpc_service_block_invoke: <private>
252 2019-05-04 15:33:44:172 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:45 iPhone-de-Tienda lockdownd[68] <Notice>: spawn_xpc_service_block_invoke: <private>
253 2019-05-04 15:33:44:183 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:45 iPhone-de-Tienda trustd[108] <Notice>: cert[0]: MissingIntermediate =(leaf)[force]> 0
254 2019-05-04 15:33:44:183 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:45 iPhone-de-Tienda trustd[108] <Notice>: cert[0]: NonEmptySubject =(path)[]> 0
255 2019-05-04 15:33:44:189 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:45 iPhone-de-Tienda lockdownd[68] <Notice>: handle_start_service: <private>
256 2019-05-04 15:33:44:189 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:45 iPhone-de-Tienda lockdownd[68] <Notice>: MAEGate_GetBrickState: <private>
257 2019-05-04 15:33:44:190 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:45 iPhone-de-Tienda lockdownd[68] <Notice>: spawn_xpc_service: <private>
258 2019-05-04 15:33:44:191 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:45 iPhone-de-Tienda lockdownd[68] <Notice>: spawn_xpc_service_block_invoke: <private>
259 2019-05-04 15:33:44:192 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:45 iPhone-de-Tienda lockdownd[68] <Notice>: spawn_xpc_service_block_invoke: <private>
260 2019-05-04 15:33:44:253 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:45 iPhone-de-Tienda lockdownd[68] <Notice>: handle_start_service: <private>
261 2019-05-04 15:33:44:254 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:45 iPhone-de-Tienda lockdownd[68] <Notice>: MAEGate_GetBrickState: <private>
262 iOSLog
263 iOSLog
264 2019-05-04 15:33:44:256 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:45 iPhone-de-Tienda lockdownd[68] <Notice>: spawn_xpc_service: <private>
265 2019-05-04 15:33:44:256 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:45 iPhone-de-Tienda dataaccessd(CFNetwork)[552] <Notice>: Task <9F303664-2230-4724-BC10-A8D096766CFA>.<0> response ended
266 2019-05-04 15:33:44:257 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:45 iPhone-de-Tienda dataaccessd(CFNetwork)[552] <Notice>: Task <9F303664-2230-4724-BC10-A8D096766CFA>.<0> done using Connection 281
267 2019-05-04 15:33:44:257 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:45 iPhone-de-Tienda dataaccessd(CFNetwork)[552] <Notice>: Task <D5188E19-1F45-4834-B50C-9F5E4995B73A>.<0> response ended
268 2019-05-04 15:33:44:258 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:45 iPhone-de-Tienda dataaccessd(CFNetwork)[552] <Notice>: Task <D5188E19-1F45-4834-B50C-9F5E4995B73A>.<0> done using Connection 282
269 2019-05-04 15:33:44:258 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:45 iPhone-de-Tienda lockdownd[68] <Notice>: spawn_xpc_service_block_invoke: <private>
270 2019-05-04 15:33:44:258 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:45 iPhone-de-Tienda lockdownd[68] <Notice>: spawn_xpc_service_block_invoke: <private>
271 2019-05-04 15:33:44:259 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:45 iPhone-de-Tienda dataaccessd(DADaemonCardDAV)[552] <Notice>: Server requested 0 etags, returning 0
272 2019-05-04 15:33:44:263 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:45 iPhone-de-Tienda dataaccessd(DADaemonCardDAV)[552] <Notice>: Syncing: no actions in server results phase
273 2019-05-04 15:33:44:276 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:45 iPhone-de-Tienda dataaccessd(DADaemonCardDAV)[552] <Notice>: Default source com.apple.account.AppleAccount
274 2019-05-04 15:33:44:277 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:45 iPhone-de-Tienda dataaccessd(DADaemonCardDAV)[552] <Notice>: 0 changes for account iCloud (com.apple.account.AppleAccount)
275 2019-05-04 15:33:44:277 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:45 iPhone-de-Tienda dataaccessd(DADaemonCardDAV)[552] <Notice>: Syncing: no actions from local contact store
276 iOSLog
277 2019-05-04 15:33:44:285 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:46 iPhone-de-Tienda lockdownd[68] <Notice>: handle_get_value: <private>
278 2019-05-04 15:33:44:285 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:46 iPhone-de-Tienda dataaccessd(CFNetwork)[552] <Notice>: CFNetwork-AOSKit: Reaching out to AOSKit for X-mobile me token
279 2019-05-04 15:33:44:286 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:46 iPhone-de-Tienda dataaccessd(CFNetwork)[552] <Notice>: CFNetwork-AOSKit: Applied X-mobile me auth to request
280 2019-05-04 15:33:44:286 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:46 iPhone-de-Tienda dataaccessd(CFNetwork)[552] <Notice>: Task <D3E777F4-EF48-4BCC-8B06-F6D85A75A2FF>.<0> now using Connection 281
281 2019-05-04 15:33:44:287 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:46 iPhone-de-Tienda lockdownd[68] <Notice>: copy_itunes_value_block_invoke: <private>
282 2019-05-04 15:33:44:287 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:46 iPhone-de-Tienda dataaccessd(CFNetwork)[552] <Notice>: Task <D3E777F4-EF48-4BCC-8B06-F6D85A75A2FF>.<0> sent request, body D
283 iOSLog
284 2019-05-04 15:33:44:338 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:46 iPhone-de-Tienda accountsd(AccountsDaemon)[99] <Notice>: Nil qualifiedUsername for account <private>. Can't look up credential
285 2019-05-04 15:33:44:339 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:46 iPhone-de-Tienda dataaccessd(Accounts)[552] <Error>: "Error returned from daemon: Error Domain=com.apple.accounts Code=11"
286 2019-05-04 15:33:44:339 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:46 iPhone-de-Tienda dataaccessd(DataAccess)[552] <Error>: spinnerIdentifiers to be implemented by subclass
287 2019-05-04 15:33:44:346 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:46 iPhone-de-Tienda dataaccessd(CFNetwork)[552] <Notice>: Task <AC31F562-DCDA-4E0B-AE31-F8ACD8D70BE4>.<1> resuming, QOS(0x15)
288 iOSLog
289 2019-05-04 15:33:44:364 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:46 iPhone-de-Tienda dataaccessd(CFNetwork)[552] <Notice>: TIC Enabling TLS [286:0x11dd9f230]
290 2019-05-04 15:33:44:364 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:46 iPhone-de-Tienda dataaccessd(CFNetwork)[552] <Notice>: TIC TCP Conn Start [286:0x11dd9f230]
291 iOSLog
292 iOSLog
293 2019-05-04 15:33:44:367 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:46 iPhone-de-Tienda dataaccessd(CFNetwork)[552] <Notice>: Task <AC31F562-DCDA-4E0B-AE31-F8ACD8D70BE4>.<1> setting up Connection 286
294 iOSLog
295 2019-05-04 15:33:44:416 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:46 iPhone-de-Tienda dataaccessd(CFNetwork)[552] <Notice>: TIC TLS Event [286:0x11dd9f230]: 1, Pending(0)
309 iOSLog
310 2019-05-04 15:33:44:458 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:46 iPhone-de-Tienda dataaccessd(CFNetwork)[552] <Notice>: Task <D3E777F4-EF48-4BCC-8B06-F6D85A75A2FF>.<0> response ended
311 2019-05-04 15:33:44:459 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:46 iPhone-de-Tienda dataaccessd(CFNetwork)[552] <Notice>: Task <D3E777F4-EF48-4BCC-8B06-F6D85A75A2FF>.<0> done using Connection 281
312 2019-05-04 15:33:44:459 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:46 iPhone-de-Tienda dataaccessd(DADaemonCardDAV)[552] <Notice>: Server requested 0 etags, returning 0
313 2019-05-04 15:33:44:465 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:46 iPhone-de-Tienda dataaccessd(DADaemonCardDAV)[552] <Notice>: Syncing: no actions in server results phase
314 2019-05-04 15:33:44:468 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:46 iPhone-de-Tienda dataaccessd(CFNetwork)[552] <Notice>: TIC TLS Event [286:0x11dd9f230]: 11, Pending(0)
315 2019-05-04 15:33:44:472 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:46 iPhone-de-Tienda dataaccessd(CFNetwork)[552] <Notice>: TIC TLS Event [286:0x11dd9f230]: 14, Pending(0)
317 2019-05-04 15:33:44:498 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:46 iPhone-de-Tienda trustd[108] <Notice>: ocsp responder: (null) did not include status of requested cert
318 2019-05-04 15:33:44:499 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:46 iPhone-de-Tienda lockdownd[68] <Notice>: handle_get_value: <private>
319 2019-05-04 15:33:44:507 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:46 iPhone-de-Tienda lockdownd[68] <Notice>: handle_get_value: <private>
320 2019-05-04 15:33:44:520 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:46 iPhone-de-Tienda trustd[108] <Notice>: ocsp responder: (null) did not include status of requested cert
321 2019-05-04 15:33:44:532 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:46 iPhone-de-Tienda trustd[108] <Notice>: ocsp responder: (null) did not include status of requested cert
322 2019-05-04 15:33:44:539 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:46 iPhone-de-Tienda dataaccessd(CFNetwork)[552] <Notice>: TIC TLS Trust Result [286:0x11dd9f230]: 0
323 2019-05-04 15:33:44:543 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:46 iPhone-de-Tienda dataaccessd(CFNetwork)[552] <Notice>: TIC TLS Event [286:0x11dd9f230]: 2, Pending(0)
324 2019-05-04 15:33:44:547 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:46 iPhone-de-Tienda appstored[162] <Notice>: [CacheDeleteCoordinator]: Refreshing purgeable storage with reason: Update Push
325 2019-05-04 15:33:44:548 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:46 iPhone-de-Tienda appstored[162] <Error>: [ODRBackgroundMaintenance]: Cancelling maintenance operations.
326 2019-05-04 15:33:44:548 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:46 iPhone-de-Tienda appstored[162] <Notice>: [ODRBackgroundMaintenance]: All maintenance operations should now be complete.
327 2019-05-04 15:33:44:549 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:46 iPhone-de-Tienda appstored[162] <Notice>: [ODRManager]: PURGING : 0 bytes available for purging urgency 1
328 2019-05-04 15:33:44:552 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:46 iPhone-de-Tienda appstored[162] <Notice>: [ODRManager]: PURGING : 0 bytes available for purging urgency 2
329 iOSLog
330 2019-05-04 15:33:44:555 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:46 iPhone-de-Tienda appstored[162] <Notice>: [ODRManager]: PURGING : 0 bytes available for purging urgency 3
331 2019-05-04 15:33:44:555 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:46 iPhone-de-Tienda appstored[162] <Error>: [ODRBackgroundMaintenance]: Cancelling maintenance operations.
332 2019-05-04 15:33:44:556 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:46 iPhone-de-Tienda appstored[162] <Notice>: [ODRBackgroundMaintenance]: All maintenance operations should now be complete.
333 iOSLog
334 iOSLog
335 2019-05-04 15:33:44:558 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:46 iPhone-de-Tienda appstored[162] <Notice>: [ODRManager]: PURGING : 0 bytes available for purging urgency 4
336 2019-05-04 15:33:44:558 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:46 iPhone-de-Tienda appstored[162] <Notice>: [CacheDeleteCoordinator]: Refreshed app purgeable: {
337 2019-05-04 15:33:44:558 - [iOSLog] [IOS_SYSLOG_ROW] 3 = 0;
338 2019-05-04 15:33:44:558 - [iOSLog] [IOS_SYSLOG_ROW] 2 = 0;
339 2019-05-04 15:33:44:559 - [iOSLog] [IOS_SYSLOG_ROW] 1 = 0;
340 2019-05-04 15:33:44:559 - [iOSLog] [IOS_SYSLOG_ROW] 4 = 0;
341 2019-05-04 15:33:44:559 - [iOSLog] [IOS_SYSLOG_ROW] }
342 2019-05-04 15:33:44:559 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:46 iPhone-de-Tienda appstored[162] <Notice>: [CacheDeleteCoordinator]: Refreshed ODR purgeable: {
343 2019-05-04 15:33:44:559 - [iOSLog] [IOS_SYSLOG_ROW] 3 = 0;
344 2019-05-04 15:33:44:559 - [iOSLog] [IOS_SYSLOG_ROW] 2 = 0;
345 2019-05-04 15:33:44:559 - [iOSLog] [IOS_SYSLOG_ROW] 1 = 0;
346 2019-05-04 15:33:44:559 - [iOSLog] [IOS_SYSLOG_ROW] 4 = 0;
347 2019-05-04 15:33:44:559 - [iOSLog] [IOS_SYSLOG_ROW] }
348 2019-05-04 15:33:44:559 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:46 iPhone-de-Tienda appstored[162] <Notice>: [CacheDeleteCoordinator]: Pushed combined purgeable amounts: {
349 2019-05-04 15:33:44:559 - [iOSLog] [IOS_SYSLOG_ROW] 3 = 0;
350 2019-05-04 15:33:44:560 - [iOSLog] [IOS_SYSLOG_ROW] 2 = 0;
351 2019-05-04 15:33:44:560 - [iOSLog] [IOS_SYSLOG_ROW] 1 = 0;
352 2019-05-04 15:33:44:560 - [iOSLog] [IOS_SYSLOG_ROW] 4 = 0;
353 2019-05-04 15:33:44:560 - [iOSLog] [IOS_SYSLOG_ROW] }
354 2019-05-04 15:33:44:560 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:46 iPhone-de-Tienda appstored[162] <Error>: [ODRBackgroundMaintenance]: Cancelling maintenance operations.
355 2019-05-04 15:33:44:560 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:46 iPhone-de-Tienda appstored[162] <Notice>: [ODRBackgroundMaintenance]: All maintenance operations should now be complete.
356 iOSLog
357 2019-05-04 15:33:44:566 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:46 iPhone-de-Tienda deleted[167] <Notice>: Not purging for VFS event 0x0 (pending count: 0, volumes: <private>)
358 2019-05-04 15:33:44:567 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:46 iPhone-de-Tienda deleted[167] <Notice>: Volume <private> is above DESIRED now!
359 2019-05-04 15:33:44:569 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:46 iPhone-de-Tienda deleted[167] <Notice>: skipping lowMediumPriority purge for volume: "<private>", freespace: 51058061312
360 2019-05-04 15:33:44:570 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:46 iPhone-de-Tienda deleted[167] <Notice>: skipping highPriority purge for volume: "<private>", freespace: 51058061312
361 2019-05-04 15:33:44:570 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:46 iPhone-de-Tienda deleted[167] <Notice>: Clearing delayed critical low disk activity for volume <private>
362 2019-05-04 15:33:44:571 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:46 iPhone-de-Tienda deleted[167] <Notice>: Clearing delayed comfort low disk activity for volume <private>
363 2019-05-04 15:33:44:573 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:46 iPhone-de-Tienda deleted[167] <Notice>: Broadcasting LowDisk Notification: (previous)1 -> (current)1
364 2019-05-04 15:33:44:574 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:46 iPhone-de-Tienda deleted(iCloudNotification)[167] <Error>: Connection to ind invalidated!
365 iOSLog
366 iOSLog
367 2019-05-04 15:33:44:585 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:46 iPhone-de-Tienda dataaccessd(CFNetwork)[552] <Notice>: TIC TLS Event [286:0x11dd9f230]: 20, Pending(0)
368 2019-05-04 15:33:44:585 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:46 iPhone-de-Tienda dataaccessd(CFNetwork)[552] <Notice>: TIC TCP Conn Connected [286:0x11dd9f230]: Err(16)
369 2019-05-04 15:33:44:586 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:46 iPhone-de-Tienda dataaccessd(CFNetwork)[552] <Notice>: TIC TCP Conn Event [286:0x11dd9f230]: 1
370 2019-05-04 15:33:44:586 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:46 iPhone-de-Tienda dataaccessd(CFNetwork)[552] <Notice>: TIC TCP Conn Event [286:0x11dd9f230]: 8
371 2019-05-04 15:33:44:586 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:46 iPhone-de-Tienda dataaccessd(CFNetwork)[552] <Notice>: TIC TLS Handshake Complete [286:0x11dd9f230]
372 2019-05-04 15:33:44:587 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:46 iPhone-de-Tienda dataaccessd(CFNetwork)[552] <Notice>: Task <AC31F562-DCDA-4E0B-AE31-F8ACD8D70BE4>.<1> now using Connection 286
373 iOSLog
374 2019-05-04 15:33:44:588 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:46 iPhone-de-Tienda dataaccessd(CFNetwork)[552] <Notice>: Task <AC31F562-DCDA-4E0B-AE31-F8ACD8D70BE4>.<1> sent request, body N
375 2019-05-04 15:33:44:627 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:46 iPhone-de-Tienda trustd[108] <Notice>: cert[0]: MissingIntermediate =(leaf)[force]> 0
376 2019-05-04 15:33:44:628 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:46 iPhone-de-Tienda trustd[108] <Notice>: cert[0]: NonEmptySubject =(path)[]> 0
377 2019-05-04 15:33:44:644 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:46 iPhone-de-Tienda lockdownd[68] <Notice>: handle_get_value: <private>
378 2019-05-04 15:33:44:645 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:46 iPhone-de-Tienda lockdownd[68] <Notice>: handle_get_value: <private>
379 2019-05-04 15:33:44:658 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:46 iPhone-de-Tienda lockdownd[68] <Notice>: handle_get_value: <private>
380 2019-05-04 15:33:44:661 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:46 iPhone-de-Tienda lockdownd[68] <Notice>: handle_get_value: <private>
381 2019-05-04 15:33:44:759 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:46 iPhone-de-Tienda trustd[108] <Notice>: cert[0]: MissingIntermediate =(leaf)[force]> 0
382 2019-05-04 15:33:44:760 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:46 iPhone-de-Tienda trustd[108] <Notice>: cert[0]: NonEmptySubject =(path)[]> 0
383 iOSLog
384 2019-05-04 15:33:44:762 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:46 iPhone-de-Tienda dataaccessd(CFNetwork)[552] <Notice>: Task <AC31F562-DCDA-4E0B-AE31-F8ACD8D70BE4>.<1> response ended
385 2019-05-04 15:33:44:762 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:46 iPhone-de-Tienda dataaccessd(CFNetwork)[552] <Notice>: Task <AC31F562-DCDA-4E0B-AE31-F8ACD8D70BE4>.<1> done using Connection 286
386 2019-05-04 15:33:44:763 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:46 iPhone-de-Tienda dataaccessd(CFNetwork)[552] <Notice>: removing all entries config 0x11df13a20
387 2019-05-04 15:33:44:763 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:46 iPhone-de-Tienda dataaccessd(CFNetwork)[552] <Notice>: TIC TCP Conn Cancel [286:0x11dd9f230]
388 iOSLog
389 iOSLog
390 2019-05-04 15:33:44:765 - [iOSLog] [IOS_SYSLOG_ROW] [C286.1 <private> 192.168.1.45:52820<->IPv4#cc9d6a8f:443]
391 2019-05-04 15:33:44:765 - [iOSLog] [IOS_SYSLOG_ROW] Connected Path: satisfied (Path is satisfied), interface: en0, ipv4, dns
392 2019-05-04 15:33:44:766 - [iOSLog] [IOS_SYSLOG_ROW] Duration: 0.399s, DNS @0.001s took 0.004s, TCP @0.008s took 0.041s, TLS took 0.169s
393 2019-05-04 15:33:44:766 - [iOSLog] [IOS_SYSLOG_ROW] bytes in/out: 11142/862, packets in/out: 10/3, rtt: 0.045s, retransmitted packets: 0, out-of-order packets: 0
394 2019-05-04 15:33:44:768 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:46 iPhone-de-Tienda dataaccessd(libnetwork.dylib)[552] <Notice>: 0.000s [C286 <private> Hostname#a0e916f5:443 resolver] path:start
395 2019-05-04 15:33:44:768 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:46 iPhone-de-Tienda dataaccessd(libnetwork.dylib)[552] <Notice>: 0.000s [C286 <private> Hostname#a0e916f5:443 resolver] path:satisfied
396 iOSLog
397 iOSLog
398 iOSLog
399 iOSLog
400 iOSLog
401 iOSLog
402 iOSLog
403 iOSLog
404 iOSLog
405 iOSLog
406 iOSLog
407 iOSLog
408 iOSLog
409 2019-05-04 15:33:44:783 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:46 iPhone-de-Tienda dataaccessd(libnetwork.dylib)[552] <Notice>: 0.399s [C286] path:cancel
410 2019-05-04 15:33:44:783 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:46 iPhone-de-Tienda dataaccessd(libusrtcp.dylib)[552] <Notice>: nw_protocol_tcp_log_summary [C286.1:3]
411 2019-05-04 15:33:44:784 - [iOSLog] [IOS_SYSLOG_ROW] [<private> <private>:52820<-><private>:443]
412 2019-05-04 15:33:44:784 - [iOSLog] [IOS_SYSLOG_ROW] Init: 1, Conn_Time: 40.493ms, Syn's: 1, WR_T: 0/0, RD_T: 0/0, TFO: 0/0/0, ECN: 0/0/0, TS: 1
413 2019-05-04 15:33:44:786 - [iOSLog] [IOS_SYSLOG_ROW] RTT_Cache: none, rtt_upd: 4, rtt: 45.062ms, rtt_var: 18.937ms rtt_nc: 45.062ms, rtt_var_nc: 18.937ms
414 iOSLog
415 iOSLog
416 2019-05-04 15:33:44:789 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:46 iPhone-de-Tienda dataaccessd(CFNetwork)[552] <Notice>: TIC TCP Conn Destroyed [286:0x11dd9f230]
417 2019-05-04 15:33:44:790 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:46 iPhone-de-Tienda dataaccessd(CFNetwork)[552] <Notice>: removing all entries config 0x11df13a20
418 2019-05-04 15:33:44:790 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:46 iPhone-de-Tienda dataaccessd(CFNetwork)[552] <Notice>: removing all entries config 0x11df13a20
419 2019-05-04 15:33:44:791 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:46 iPhone-de-Tienda lsd(CoreServices)[86] <Notice>: Writing store (no GC) 0x10332be20 with writer 0x16d1a6250
420 2019-05-04 15:33:44:791 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:46 iPhone-de-Tienda dataaccessd(DataAccess)[552] <Error>: spinnerIdentifiers to be implemented by subclass
421 2019-05-04 15:33:44:792 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:46 iPhone-de-Tienda lockdownd[68] <Notice>: handle_start_service: <private>
422 2019-05-04 15:33:44:792 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:46 iPhone-de-Tienda lockdownd[68] <Notice>: MAEGate_GetBrickState: <private>
423 2019-05-04 15:33:44:793 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:46 iPhone-de-Tienda lsd(CoreServices)[86] <Notice>: _LSSessionSave: result = 0 saving database for UID 501
424 2019-05-04 15:33:44:793 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:46 iPhone-de-Tienda lockdownd[68] <Notice>: spawn_xpc_service: <private>
425 2019-05-04 15:33:44:794 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:46 iPhone-de-Tienda calaccessd(CalendarDaemon)[142] <Notice>: Forwarding darwin notifications to modules.
426 iOSLog
427 2019-05-04 15:33:44:795 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:46 iPhone-de-Tienda calaccessd(CalendarNotification)[142] <Notice>: Handling darwin notification <private>
428 2019-05-04 15:33:44:795 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:46 iPhone-de-Tienda calaccessd(CalendarNotification)[142] <Notice>: Received notification: [<private>]
429 2019-05-04 15:33:44:796 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:46 iPhone-de-Tienda calaccessd(CalendarNotification)[142] <Notice>: Sync started. Suppressing updates while it runs.
430 2019-05-04 15:33:44:796 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:46 iPhone-de-Tienda lockdownd[68] <Notice>: spawn_xpc_service_block_invoke: <private>
431 2019-05-04 15:33:44:797 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:46 iPhone-de-Tienda calaccessd(CalendarNotification)[142] <Notice>: Received notification: [<private>]
432 2019-05-04 15:33:44:797 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:46 iPhone-de-Tienda lockdownd[68] <Notice>: spawn_xpc_service_block_invoke: <private>
433 2019-05-04 15:33:44:798 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:46 iPhone-de-Tienda calaccessd(CalendarNotification)[142] <Notice>: Sync started. Suppressing updates while it runs.
434 2019-05-04 15:33:44:798 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:46 iPhone-de-Tienda calaccessd(CalendarNotification)[142] <Notice>: Sync started. Suppressing updates while it runs.
435 2019-05-04 15:33:44:799 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:46 iPhone-de-Tienda calaccessd(CalendarNotification)[142] <Notice>: Received notification: [CalSyncClientBeginningMultiSave].
436 2019-05-04 15:33:44:799 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:46 iPhone-de-Tienda calaccessd(EventKit)[142] <Notice>: Sync started. Suppressing notification monitor checks while it runs.
437 2019-05-04 15:33:44:800 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:46 iPhone-de-Tienda calaccessd(CalendarDaemon)[142] <Notice>: Forwarded darwin notification named: <private> to module: <private>.
438 2019-05-04 15:33:44:801 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:46 iPhone-de-Tienda calaccessd(CalendarDaemon)[142] <Notice>: Finished fowarding darwin notifications to modules.
439 2019-05-04 15:33:44:802 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:46 iPhone-de-Tienda calaccessd(CalendarNotification)[142] <Notice>: Installing sync yield timer for travel engine: [<private>].
440 iOSLog
441 2019-05-04 15:33:44:803 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:46 iPhone-de-Tienda calaccessd(CalendarDaemon)[142] <Notice>: Forwarding darwin notifications to modules.
442 iOSLog
443 2019-05-04 15:33:44:804 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:46 iPhone-de-Tienda calaccessd(CalendarNotification)[142] <Notice>: Handling darwin notification <private>
444 2019-05-04 15:33:44:805 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:46 iPhone-de-Tienda calaccessd(CalendarNotification)[142] <Notice>: Received notification: [<private>]
445 2019-05-04 15:33:44:805 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:46 iPhone-de-Tienda calaccessd(CalendarNotification)[142] <Notice>: Sync done. <private> will now reload if needed.
446 2019-05-04 15:33:44:805 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:46 iPhone-de-Tienda calaccessd(CalendarNotification)[142] <Notice>: Received notification: [<private>]
447 2019-05-04 15:33:44:806 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:46 iPhone-de-Tienda calaccessd(CalendarNotification)[142] <Notice>: Sync done. <private> will now reload if needed.
448 2019-05-04 15:33:44:807 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:46 iPhone-de-Tienda calaccessd(CalendarNotification)[142] <Notice>: Sync done.
449 2019-05-04 15:33:44:807 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:46 iPhone-de-Tienda calaccessd(CalendarNotification)[142] <Notice>: Received notification: [CalSyncClientFinishedMultiSave].
450 2019-05-04 15:33:44:808 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:46 iPhone-de-Tienda calaccessd(EventKit)[142] <Notice>: Sync done, no pending changes.
451 2019-05-04 15:33:44:808 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:46 iPhone-de-Tienda calaccessd(CalendarDaemon)[142] <Notice>: Forwarded darwin notification named: <private> to module: <private>.
452 2019-05-04 15:33:44:808 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:46 iPhone-de-Tienda calaccessd(CalendarDaemon)[142] <Notice>: Finished fowarding darwin notifications to modules.
453 2019-05-04 15:33:44:809 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:46 iPhone-de-Tienda calaccessd(CalendarNotification)[142] <Notice>: Uninstalling sync yield timer for travel engine: [<private>].
454 iOSLog
455 iOSLog
456 2019-05-04 15:33:44:811 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:46 iPhone-de-Tienda companion_proxy(IDS)[199] <Notice>: !setState service=com.apple.private.alloy.companionproxy
457 2019-05-04 15:33:44:811 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:46 iPhone-de-Tienda companion_proxy(IDS)[199] <Notice>: Finished processing accounts set.
458 2019-05-04 15:33:44:812 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:46 iPhone-de-Tienda companion_proxy(IDS)[199] <Notice>: Connection map:
459 2019-05-04 15:33:44:812 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:46 iPhone-de-Tienda companion_proxy(IMFoundation)[199] <Notice>: Created XPC service with name: <private> (Connection: 0x151f184c0)
460 2019-05-04 15:33:44:813 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:46 iPhone-de-Tienda companion_proxy(IMFoundation)[199] <Notice>: Connection went invalid: 0x151f184c0
461 2019-05-04 15:33:44:816 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:46 iPhone-de-Tienda lockdownd[68] <Notice>: handle_get_value: <private>
462 2019-05-04 15:33:44:819 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:46 iPhone-de-Tienda lockdownd[68] <Notice>: handle_get_value: <private>
463 iOSLog
464 2019-05-04 15:33:44:914 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:46 iPhone-de-Tienda trustd[108] <Notice>: cert[0]: MissingIntermediate =(leaf)[force]> 0
465 2019-05-04 15:33:44:914 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:46 iPhone-de-Tienda trustd[108] <Notice>: cert[0]: NonEmptySubject =(path)[]> 0
466 2019-05-04 15:33:44:926 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:46 iPhone-de-Tienda lockdownd[68] <Notice>: handle_get_value: <private>
467 2019-05-04 15:33:44:928 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:46 iPhone-de-Tienda lockdownd[68] <Notice>: handle_get_value: <private>
468 2019-05-04 15:33:44:929 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:46 iPhone-de-Tienda lockdownd[68] <Notice>: handle_get_value: <private>
469 2019-05-04 15:33:44:933 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:46 iPhone-de-Tienda lockdownd[68] <Notice>: handle_get_value: <private>
470 2019-05-04 15:33:44:951 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:46 iPhone-de-Tienda lockdownd[68] <Notice>: handle_get_value: <private>
471 2019-05-04 15:33:44:953 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:46 iPhone-de-Tienda lockdownd[68] <Notice>: handle_get_value: <private>
472 2019-05-04 15:33:45:096 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:46 iPhone-de-Tienda lockdownd[68] <Notice>: handle_get_value: <private>
473 2019-05-04 15:33:45:096 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:46 iPhone-de-Tienda lockdownd[68] <Notice>: set_response_error: <private>
474 2019-05-04 15:33:45:098 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:46 iPhone-de-Tienda lockdownd[68] <Notice>: handle_get_value: <private>
475 2019-05-04 15:33:45:101 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:46 iPhone-de-Tienda lockdownd[68] <Notice>: handle_get_value: <private>
476 2019-05-04 15:33:45:101 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:46 iPhone-de-Tienda apsd[95] <Notice>: copyTokenForDomain push.apple.com (null)
477 2019-05-04 15:33:45:102 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:46 iPhone-de-Tienda mobileassetd[92] <Error>: _MobileAssetUpdateClientUsage_block_invoke: Could not get accessing clients is nil
478 2019-05-04 15:33:45:102 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:46 iPhone-de-Tienda mobileassetd[92] <Error>: _MobileAssetUpdateClientUsage_block_invoke: Could not get accessing clients is nil
479 2019-05-04 15:33:45:103 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:46 iPhone-de-Tienda mobileassetd[92] <Error>: _MobileAssetUpdateClientUsage_block_invoke: Could not get accessing clients is nil
480 2019-05-04 15:33:45:109 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:46 iPhone-de-Tienda apsd[95] <Notice>: <private>: __processStoredIncomingMessageForConnection: <private>
481 2019-05-04 15:33:45:112 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:46 iPhone-de-Tienda lockdownd[68] <Notice>: handle_get_value: <private>
482 2019-05-04 15:33:45:117 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:46 iPhone-de-Tienda lockdownd[68] <Notice>: handle_get_value: <private>
483 2019-05-04 15:33:45:227 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:46 iPhone-de-Tienda trustd[108] <Notice>: cert[0]: MissingIntermediate =(leaf)[force]> 0
484 2019-05-04 15:33:45:228 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:46 iPhone-de-Tienda trustd[108] <Notice>: cert[0]: NonEmptySubject =(path)[]> 0
485 2019-05-04 15:33:45:242 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:46 iPhone-de-Tienda lockdownd[68] <Notice>: handle_get_value: <private>
486 2019-05-04 15:33:45:244 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:46 iPhone-de-Tienda lockdownd[68] <Notice>: handle_get_value: <private>
487 2019-05-04 15:33:45:246 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:46 iPhone-de-Tienda lockdownd[68] <Notice>: handle_get_value: <private>
488 2019-05-04 15:33:45:247 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:46 iPhone-de-Tienda lockdownd[68] <Notice>: handle_get_value: <private>
489 2019-05-04 15:33:45:250 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:46 iPhone-de-Tienda lockdownd[68] <Notice>: handle_get_value: <private>
490 2019-05-04 15:33:45:252 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:46 iPhone-de-Tienda lockdownd[68] <Notice>: handle_get_value: <private>
491 2019-05-04 15:33:45:254 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:46 iPhone-de-Tienda lockdownd[68] <Notice>: handle_get_value: <private>
492 2019-05-04 15:33:45:254 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:46 iPhone-de-Tienda lockdownd[68] <Notice>: MAEGate_GetActivationState: <private>
493 2019-05-04 15:33:45:258 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:46 iPhone-de-Tienda lockdownd[68] <Notice>: handle_get_value: <private>
494 2019-05-04 15:33:45:260 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:46 iPhone-de-Tienda lockdownd[68] <Notice>: handle_get_value: <private>
495 2019-05-04 15:33:45:261 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:46 iPhone-de-Tienda lockdownd[68] <Notice>: handle_get_value: <private>
496 2019-05-04 15:33:45:263 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:46 iPhone-de-Tienda lockdownd[68] <Notice>: handle_get_value: <private>
497 2019-05-04 15:33:45:264 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:46 iPhone-de-Tienda lockdownd[68] <Notice>: handle_get_value: <private>
498 2019-05-04 15:33:45:266 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:46 iPhone-de-Tienda lockdownd[68] <Notice>: handle_get_value: <private>
499 2019-05-04 15:33:45:269 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:46 iPhone-de-Tienda lockdownd[68] <Notice>: handle_get_value: <private>
500 2019-05-04 15:33:45:270 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:46 iPhone-de-Tienda lockdownd[68] <Notice>: handle_get_value: <private>
501 2019-05-04 15:33:45:271 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:46 iPhone-de-Tienda lockdownd[68] <Notice>: mglog: <private>
502 2019-05-04 15:33:45:271 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:46 iPhone-de-Tienda lockdownd(libMobileGestalt.dylib)[68] <Notice>: statfs(/mnt4): No such file or directory
503 2019-05-04 15:33:45:274 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:46 iPhone-de-Tienda lockdownd[68] <Notice>: handle_get_value: <private>
504 2019-05-04 15:33:45:275 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:46 iPhone-de-Tienda lockdownd[68] <Notice>: mglog: <private>
505 2019-05-04 15:33:45:275 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:46 iPhone-de-Tienda lockdownd(libMobileGestalt.dylib)[68] <Notice>: statfs(/mnt4): No such file or directory
506 2019-05-04 15:33:45:278 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:47 iPhone-de-Tienda lockdownd[68] <Notice>: handle_get_value: <private>
507 2019-05-04 15:33:45:281 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:47 iPhone-de-Tienda lockdownd[68] <Notice>: handle_get_value: <private>
508 2019-05-04 15:33:45:282 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:47 iPhone-de-Tienda lockdownd[68] <Notice>: handle_get_value: <private>
509 2019-05-04 15:33:45:289 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:47 iPhone-de-Tienda lockdownd[68] <Notice>: handle_get_value: <private>
510 2019-05-04 15:33:45:291 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:47 iPhone-de-Tienda lockdownd[68] <Notice>: handle_get_value: <private>
511 2019-05-04 15:33:45:307 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:47 iPhone-de-Tienda lockdownd[68] <Notice>: handle_get_value: <private>
512 2019-05-04 15:33:45:311 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:47 iPhone-de-Tienda lockdownd[68] <Notice>: handle_get_value: <private>
513 2019-05-04 15:33:45:413 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:47 iPhone-de-Tienda trustd[108] <Notice>: cert[0]: MissingIntermediate =(leaf)[force]> 0
514 2019-05-04 15:33:45:413 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:47 iPhone-de-Tienda trustd[108] <Notice>: cert[0]: NonEmptySubject =(path)[]> 0
515 2019-05-04 15:33:45:432 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:47 iPhone-de-Tienda lockdownd[68] <Notice>: handle_start_service: <private>
516 2019-05-04 15:33:45:433 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:47 iPhone-de-Tienda lockdownd[68] <Notice>: spawn_xpc_service: <private>
517 2019-05-04 15:33:45:436 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:47 iPhone-de-Tienda lockdownd[68] <Notice>: spawn_xpc_service_block_invoke: <private>
518 2019-05-04 15:33:45:436 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:47 iPhone-de-Tienda lockdownd[68] <Notice>: spawn_xpc_service_block_invoke: <private>
519 2019-05-04 15:33:45:442 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:47 iPhone-de-Tienda lockdownd[68] <Notice>: handle_get_value: <private>
520 2019-05-04 15:33:45:443 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:47 iPhone-de-Tienda lockdownd[68] <Notice>: handle_get_value: <private>
521 2019-05-04 15:33:45:445 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:47 iPhone-de-Tienda lockdownd[68] <Notice>: handle_get_value: <private>
522 2019-05-04 15:33:45:447 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:47 iPhone-de-Tienda lockdownd[68] <Notice>: handle_get_value: <private>
523 2019-05-04 15:33:45:448 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:47 iPhone-de-Tienda lockdownd[68] <Notice>: set_response_error: <private>
524 2019-05-04 15:33:45:457 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:47 iPhone-de-Tienda lockdownd[68] <Notice>: handle_get_value: <private>
525 2019-05-04 15:33:45:461 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:47 iPhone-de-Tienda lockdownd[68] <Notice>: handle_get_value: <private>
529 2019-05-04 15:33:45:553 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:47 iPhone-de-Tienda trustd[108] <Notice>: cert[0]: MissingIntermediate =(leaf)[force]> 0
530 2019-05-04 15:33:45:553 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:47 iPhone-de-Tienda trustd[108] <Notice>: cert[0]: NonEmptySubject =(path)[]> 0
531 2019-05-04 15:33:45:567 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:47 iPhone-de-Tienda lockdownd[68] <Notice>: handle_get_value: <private>
532 2019-05-04 15:33:45:584 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:47 iPhone-de-Tienda lockdownd[68] <Notice>: handle_get_value: <private>
533 2019-05-04 15:33:45:588 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:47 iPhone-de-Tienda lockdownd[68] <Notice>: handle_get_value: <private>
539 2019-05-04 15:33:45:681 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:47 iPhone-de-Tienda trustd[108] <Notice>: cert[0]: MissingIntermediate =(leaf)[force]> 0
540 2019-05-04 15:33:45:681 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:47 iPhone-de-Tienda trustd[108] <Notice>: cert[0]: NonEmptySubject =(path)[]> 0
541 2019-05-04 15:33:45:696 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:47 iPhone-de-Tienda lockdownd[68] <Notice>: handle_get_value: <private>
542 iOSLog
545 2019-05-04 15:33:45:872 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:47 iPhone-de-Tienda wifid[45] <Notice>: WiFi:[578676827.593901]: Disable WoW requested by "dataaccessd"
546 2019-05-04 15:33:45:874 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:47 iPhone-de-Tienda apsd[95] <Notice>: _WiFiManagerClientWoWStateChangedCallback WoW isEnabled YES WoW state <private>
547 iOSLog
548 2019-05-04 15:33:45:876 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:47 iPhone-de-Tienda apsd[95] <Notice>: 0x10261f3b0 _WiFiManagerClientWoWStateChangedCallback shouldUseDualMode NO isWoWEnabled NO
549 2019-05-04 15:33:45:876 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:47 iPhone-de-Tienda apsd[95] <Notice>: _WiFiManagerClientWoWStateChangedCallback WoW isEnabled YES WoW state <private>
550 iOSLog
551 2019-05-04 15:33:45:877 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:47 iPhone-de-Tienda apsd[95] <Notice>: 0x102606d40 _WiFiManagerClientWoWStateChangedCallback shouldUseDualMode YES isWoWEnabled NO
552 2019-05-04 15:33:45:944 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:47 iPhone-de-Tienda powerlogHelperd(CoreLocation)[400] <Notice>: {"msg":"CLCopyAppsUsingLocation", "event":"activity"}
553 2019-05-04 15:33:45:944 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:47 iPhone-de-Tienda aggregated(CoreLocation)[910] <Notice>: {"msg":"CLCopyAppsUsingLocation", "event":"activity"}
601 2019-05-04 15:33:46:035 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:47 iPhone-de-Tienda lockdownd[68] <Notice>: handle_get_value: <private>
602 2019-05-04 15:33:46:041 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:47 iPhone-de-Tienda lockdownd[68] <Notice>: handle_get_value: <private>
603 2019-05-04 15:33:46:041 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:47 iPhone-de-Tienda lockdownd[68] <Notice>: handle_get_value: <private>
604 2019-05-04 15:33:46:045 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:47 iPhone-de-Tienda lockdownd[68] <Notice>: handle_get_value: <private>
605 2019-05-04 15:33:46:055 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:47 iPhone-de-Tienda lockdownd[68] <Notice>: handle_get_value: <private>
606 2019-05-04 15:33:46:058 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:47 iPhone-de-Tienda lockdownd[68] <Notice>: handle_get_value: <private>
607 2019-05-04 15:33:46:143 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:47 iPhone-de-Tienda trustd[108] <Notice>: cert[0]: MissingIntermediate =(leaf)[force]> 0
608 2019-05-04 15:33:46:143 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:47 iPhone-de-Tienda trustd[108] <Notice>: cert[0]: NonEmptySubject =(path)[]> 0
609 2019-05-04 15:33:46:148 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:47 iPhone-de-Tienda trustd[108] <Notice>: cert[0]: MissingIntermediate =(leaf)[force]> 0
610 2019-05-04 15:33:46:148 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:47 iPhone-de-Tienda trustd[108] <Notice>: cert[0]: NonEmptySubject =(path)[]> 0
611 2019-05-04 15:33:46:153 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:47 iPhone-de-Tienda trustd[108] <Notice>: cert[0]: MissingIntermediate =(leaf)[force]> 0
612 2019-05-04 15:33:46:153 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:47 iPhone-de-Tienda trustd[108] <Notice>: cert[0]: NonEmptySubject =(path)[]> 0
613 2019-05-04 15:33:46:153 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:47 iPhone-de-Tienda lockdownd[68] <Notice>: handle_start_service: <private>
614 2019-05-04 15:33:46:154 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:47 iPhone-de-Tienda lockdownd[68] <Notice>: MAEGate_GetBrickState: <private>
615 2019-05-04 15:33:46:154 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:47 iPhone-de-Tienda lockdownd[68] <Notice>: spawn_xpc_service: <private>
616 2019-05-04 15:33:46:156 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:47 iPhone-de-Tienda lockdownd[68] <Notice>: handle_start_service: <private>
617 2019-05-04 15:33:46:157 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:47 iPhone-de-Tienda lockdownd[68] <Notice>: MAEGate_GetBrickState: <private>
618 2019-05-04 15:33:46:158 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:47 iPhone-de-Tienda lockdownd[68] <Notice>: spawn_xpc_service_block_invoke: <private>
619 2019-05-04 15:33:46:158 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:47 iPhone-de-Tienda testmanagerd[249] <Notice>: IDE connected via lockdown over socket 4, without SSL
620 2019-05-04 15:33:46:159 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:47 iPhone-de-Tienda lockdownd[68] <Notice>: spawn_xpc_service_block_invoke: <private>
621 2019-05-04 15:33:46:159 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:47 iPhone-de-Tienda testmanagerd[249] <Notice>: Created session with socket 4
622 iOSLog
623 2019-05-04 15:33:46:161 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:47 iPhone-de-Tienda lockdownd[68] <Notice>: spawn_xpc_service: <private>
624 2019-05-04 15:33:46:161 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:47 iPhone-de-Tienda lockdownd[68] <Notice>: handle_start_service: <private>
625 2019-05-04 15:33:46:163 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:47 iPhone-de-Tienda lockdownd[68] <Notice>: MAEGate_GetBrickState: <private>
626 2019-05-04 15:33:46:163 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:47 iPhone-de-Tienda lockdownd[68] <Notice>: spawn_xpc_service_block_invoke: <private>
627 2019-05-04 15:33:46:163 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:47 iPhone-de-Tienda lockdownd[68] <Notice>: spawn_xpc_service_block_invoke: <private>
628 2019-05-04 15:33:46:164 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:47 iPhone-de-Tienda lockdownd[68] <Notice>: spawn_xpc_service: <private>
629 iOSLog
630 2019-05-04 15:33:46:166 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:47 iPhone-de-Tienda lockdownd[68] <Notice>: spawn_xpc_service_block_invoke: <private>
631 2019-05-04 15:33:46:166 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:47 iPhone-de-Tienda lockdownd[68] <Notice>: spawn_xpc_service_block_invoke: <private>
632 2019-05-04 15:33:46:166 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:47 iPhone-de-Tienda testmanagerd[249] <Notice>: IDE connected via lockdown over socket 7, without SSL
633 2019-05-04 15:33:46:167 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:47 iPhone-de-Tienda testmanagerd[249] <Notice>: Initiating control session with protocol version 30
634 2019-05-04 15:33:46:167 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:47 iPhone-de-Tienda testmanagerd[249] <Notice>: Created session with socket 7
637 iOSLog
638 iOSLog
639 iOSLog
640 2019-05-04 15:33:46:170 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:47 iPhone-de-Tienda testmanagerd[249] <Notice>: Initializing crash report observer for <private>
641 2019-05-04 15:33:46:170 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:47 iPhone-de-Tienda testmanagerd[249] <Notice>: Getting files in <private>
642 2019-05-04 15:33:46:170 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:47 iPhone-de-Tienda testmanagerd[249] <Notice>: Found 34 files in <private>
643 2019-05-04 15:33:46:171 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:47 iPhone-de-Tienda testmanagerd[249] <Notice>: Started monitoring <private>
644 iOSLog
645 iOSLog
646 2019-05-04 15:33:46:173 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:47 iPhone-de-Tienda testmanagerd[249] <Notice>: Initializing crash report observer for <private>
647 2019-05-04 15:33:46:173 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:47 iPhone-de-Tienda testmanagerd[249] <Notice>: Getting files in <private>
648 2019-05-04 15:33:46:173 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:47 iPhone-de-Tienda testmanagerd[249] <Notice>: Found 34 files in <private>
649 2019-05-04 15:33:46:174 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:47 iPhone-de-Tienda testmanagerd[249] <Notice>: Started monitoring <private>
650 2019-05-04 15:33:46:174 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:47 iPhone-de-Tienda testmanagerd[249] <Notice>: Canceled monitoring for (null)
651 iOSLog
652 2019-05-04 15:33:46:175 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:47 iPhone-de-Tienda testmanagerd[249] <Notice>: 81772F6E-4CFF-45F2-A07F-DEEF1C357756 Replied with protocol version 29
653 iOSLog
654 2019-05-04 15:33:46:188 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:47 iPhone-de-Tienda lockdownd[68] <Notice>: handle_get_value: <private>
655 2019-05-04 15:33:46:191 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:47 iPhone-de-Tienda lockdownd[68] <Notice>: handle_get_value: <private>
656 2019-05-04 15:33:46:272 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:47 iPhone-de-Tienda trustd[108] <Notice>: cert[0]: MissingIntermediate =(leaf)[force]> 0
657 2019-05-04 15:33:46:272 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:47 iPhone-de-Tienda trustd[108] <Notice>: cert[0]: NonEmptySubject =(path)[]> 0
658 2019-05-04 15:33:46:278 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:48 iPhone-de-Tienda sharingd(CoreUtils)[60] <Notice>: Activity level changed 11 (User) -> 7 (Screen)
659 2019-05-04 15:33:46:279 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:48 iPhone-de-Tienda sharingd(CoreUtils)[60] <Notice>: User became inactive. Linger advertise for 5 seconds
660 2019-05-04 15:33:46:280 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:48 iPhone-de-Tienda sharingd(WirelessProximity)[60] <Notice>: Nearby stop advertising of type: 16
661 iOSLog
662 2019-05-04 15:33:46:281 - [iOSLog] [IOS_SYSLOG_ROW] } priority 0 mode 432 options (null)
663 2019-05-04 15:33:46:282 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:48 iPhone-de-Tienda lockdownd[68] <Notice>: handle_start_service: <private>
664 2019-05-04 15:33:46:282 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:48 iPhone-de-Tienda lockdownd[68] <Notice>: MAEGate_GetBrickState: <private>
665 2019-05-04 15:33:46:283 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:48 iPhone-de-Tienda wirelessproxd[58] <Notice>: Stop advertising for process sharingd (60) of type 16
666 2019-05-04 15:33:46:284 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:48 iPhone-de-Tienda wirelessproxd[58] <Notice>: Adding data of type: 13, advData: <1fd5732f> advInterval: 290
667 2019-05-04 15:33:46:284 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:48 iPhone-de-Tienda wirelessproxd[58] <Notice>: Current advertisement packet: <0d041fd5 732f>
668 iOSLog
669 2019-05-04 15:33:46:285 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:48 iPhone-de-Tienda wirelessproxd[58] <Notice>: advertisingRulesiOS - advertising packets: (
670 2019-05-04 15:33:46:286 - [iOSLog] [IOS_SYSLOG_ROW] {
671 2019-05-04 15:33:46:286 - [iOSLog] [IOS_SYSLOG_ROW] kCBAdvDataAppleMfgData = <09ff4c00 0d041fd5 732f>;
672 2019-05-04 15:33:46:286 - [iOSLog] [IOS_SYSLOG_ROW] kCBAdvDataIsConnectable = 1;
673 2019-05-04 15:33:46:286 - [iOSLog] [IOS_SYSLOG_ROW] kCBAdvOptionAdvertisingInterval = 290;
674 2019-05-04 15:33:46:286 - [iOSLog] [IOS_SYSLOG_ROW] kCBMsgArgIsPrivilegedDaemon = 1;
675 2019-05-04 15:33:46:287 - [iOSLog] [IOS_SYSLOG_ROW] }
676 2019-05-04 15:33:46:287 - [iOSLog] [IOS_SYSLOG_ROW] )
677 2019-05-04 15:33:46:287 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:48 iPhone-de-Tienda wirelessproxd[58] <Notice>: Requesting to start advertising for clients 13 with (
678 2019-05-04 15:33:46:287 - [iOSLog] [IOS_SYSLOG_ROW] {
679 2019-05-04 15:33:46:287 - [iOSLog] [IOS_SYSLOG_ROW] kCBAdvDataAppleMfgData = <09ff4c00 0d041fd5 732f>;
680 2019-05-04 15:33:46:287 - [iOSLog] [IOS_SYSLOG_ROW] kCBAdvDataIsConnectable = 1;
681 2019-05-04 15:33:46:288 - [iOSLog] [IOS_SYSLOG_ROW] kCBAdvOptionAdvertisingInterval = 290;
682 2019-05-04 15:33:46:288 - [iOSLog] [IOS_SYSLOG_ROW] kCBMsgArgIsPrivilegedDaemon = 1;
683 2019-05-04 15:33:46:288 - [iOSLog] [IOS_SYSLOG_ROW] }
684 2019-05-04 15:33:46:288 - [iOSLog] [IOS_SYSLOG_ROW] )
685 2019-05-04 15:33:46:288 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:48 iPhone-de-Tienda lockdownd[68] <Notice>: spawn_xpc_service: <private>
686 iOSLog
687 2019-05-04 15:33:46:289 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:48 iPhone-de-Tienda bluetoothd[77] <Notice>: Received 'stop advertising' request from session "com.apple.wirelessproxd-peripheral-58-1"
688 iOSLog
689 iOSLog
690 2019-05-04 15:33:46:291 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:48 iPhone-de-Tienda bluetoothd[77] <Notice>: Advertising state change: Advertising(2) --> Stopping(3) stack:ON
691 iOSLog
692 iOSLog
693 iOSLog
694 iOSLog
695 2019-05-04 15:33:46:294 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:48 iPhone-de-Tienda wirelessproxd[58] <Notice>: Adding data of type: 13, advData: <1fd5732f> advInterval: 290
696 2019-05-04 15:33:46:295 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:48 iPhone-de-Tienda wirelessproxd[58] <Notice>: Current advertisement packet: <0d041fd5 732f>
697 2019-05-04 15:33:46:295 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:48 iPhone-de-Tienda wirelessproxd[58] <Notice>: Adding data of type: 16, advData: <071ccdc9 60> advInterval: 432
698 2019-05-04 15:33:46:295 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:48 iPhone-de-Tienda bluetoothd[77] <Notice>: Calling updateAdvertisement
699 iOSLog
700 2019-05-04 15:33:46:297 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:48 iPhone-de-Tienda wirelessproxd[58] <Notice>: Current advertisement packet: <0d041fd5 732f1005 071ccdc9 60>
701 iOSLog
702 2019-05-04 15:33:46:298 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:48 iPhone-de-Tienda wirelessproxd[58] <Notice>: advertisingRulesiOS - advertising packets: (
703 2019-05-04 15:33:46:298 - [iOSLog] [IOS_SYSLOG_ROW] {
704 2019-05-04 15:33:46:298 - [iOSLog] [IOS_SYSLOG_ROW] kCBAdvDataAppleMfgData = <10ff4c00 0d041fd5 732f1005 071ccdc9 60>;
705 2019-05-04 15:33:46:298 - [iOSLog] [IOS_SYSLOG_ROW] kCBAdvDataIsConnectable = 1;
706 2019-05-04 15:33:46:298 - [iOSLog] [IOS_SYSLOG_ROW] kCBAdvOptionAdvertisingInterval = 290;
707 2019-05-04 15:33:46:298 - [iOSLog] [IOS_SYSLOG_ROW] kCBMsgArgIsPrivilegedDaemon = 1;
708 2019-05-04 15:33:46:298 - [iOSLog] [IOS_SYSLOG_ROW] }
709 2019-05-04 15:33:46:298 - [iOSLog] [IOS_SYSLOG_ROW] )
710 2019-05-04 15:33:46:299 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:48 iPhone-de-Tienda wirelessproxd[58] <Notice>: Requesting to start advertising for clients 13 16 with (
711 2019-05-04 15:33:46:299 - [iOSLog] [IOS_SYSLOG_ROW] {
712 2019-05-04 15:33:46:299 - [iOSLog] [IOS_SYSLOG_ROW] kCBAdvDataAppleMfgData = <10ff4c00 0d041fd5 732f1005 071ccdc9 60>;
713 2019-05-04 15:33:46:299 - [iOSLog] [IOS_SYSLOG_ROW] kCBAdvDataIsConnectable = 1;
714 2019-05-04 15:33:46:299 - [iOSLog] [IOS_SYSLOG_ROW] kCBAdvOptionAdvertisingInterval = 290;
715 2019-05-04 15:33:46:300 - [iOSLog] [IOS_SYSLOG_ROW] kCBMsgArgIsPrivilegedDaemon = 1;
716 2019-05-04 15:33:46:300 - [iOSLog] [IOS_SYSLOG_ROW] }
717 2019-05-04 15:33:46:300 - [iOSLog] [IOS_SYSLOG_ROW] )
718 2019-05-04 15:33:46:300 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:48 iPhone-de-Tienda wirelessproxd[58] <Notice>: Started to advertise for type 13 with error (null)
719 2019-05-04 15:33:46:301 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:48 iPhone-de-Tienda wirelessproxd[58] <Notice>: Started to advertise for type 16 with error (null)
720 iOSLog
721 2019-05-04 15:33:46:302 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:48 iPhone-de-Tienda bluetoothd[77] <Notice>: Received 'stop advertising' request from session "com.apple.wirelessproxd-peripheral-58-1"
722 iOSLog
723 iOSLog
724 iOSLog
725 iOSLog
726 iOSLog
727 2019-05-04 15:33:46:306 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:48 iPhone-de-Tienda bluetoothd[77] <Notice>: Calling updateAdvertisement
728 iOSLog
729 2019-05-04 15:33:46:307 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:48 iPhone-de-Tienda wirelessproxd[58] <Notice>: Started to advertise for type 13 with error (null)
730 2019-05-04 15:33:46:307 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:48 iPhone-de-Tienda wirelessproxd[58] <Notice>: Started to advertise for type 16 with error (null)
731 2019-05-04 15:33:46:308 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:48 iPhone-de-Tienda identityservicesd[52] <Notice>: calling continuityDidStartAdvertisingOfType:TetheringTargetPresence
732 2019-05-04 15:33:46:308 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:48 iPhone-de-Tienda identityservicesd[52] <Notice>: calling continuityDidStartAdvertisingOfType:TetheringTargetPresence
733 2019-05-04 15:33:46:309 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:48 iPhone-de-Tienda sharingd[60] <Notice>: Received a start target advertising callback even though we're already advertising
734 2019-05-04 15:33:46:309 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:48 iPhone-de-Tienda sharingd[60] <Notice>: Received a start target advertising callback even though we're already advertising
735 2019-05-04 15:33:46:310 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:48 iPhone-de-Tienda bluetoothd[77] <Notice>: Stopped advertising successfully
736 2019-05-04 15:33:46:310 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:48 iPhone-de-Tienda bluetoothd[77] <Notice>: Advertising state change: Stopping(3) --> Idle(0) stack:ON
737 2019-05-04 15:33:46:310 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:48 iPhone-de-Tienda bluetoothd[77] <Notice>: Sending 'advertising status changed' event to local device listeners
738 2019-05-04 15:33:46:311 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:48 iPhone-de-Tienda bluetoothd[77] <Notice>: Advertising state change: Idle(0) --> Starting(1) stack:ON
739 2019-05-04 15:33:46:311 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:48 iPhone-de-Tienda lockdownd[68] <Notice>: handle_get_value: <private>
740 2019-05-04 15:33:46:311 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:48 iPhone-de-Tienda bluetoothd[77] <Notice>: Started advertising successfully
741 2019-05-04 15:33:46:312 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:48 iPhone-de-Tienda bluetoothd[77] <Notice>: Advertising state change: Starting(1) --> Advertising(2) stack:ON
742 2019-05-04 15:33:46:312 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:48 iPhone-de-Tienda bluetoothd[77] <Notice>: Sending 'advertising status changed' event to local device listeners
743 2019-05-04 15:33:46:312 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:48 iPhone-de-Tienda lockdownd[68] <Notice>: handle_get_value: <private>
744 2019-05-04 15:33:46:398 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:48 iPhone-de-Tienda trustd[108] <Notice>: cert[0]: MissingIntermediate =(leaf)[force]> 0
745 2019-05-04 15:33:46:398 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:48 iPhone-de-Tienda trustd[108] <Notice>: cert[0]: NonEmptySubject =(path)[]> 0
746 2019-05-04 15:33:46:447 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:48 iPhone-de-Tienda lockdownd[68] <Notice>: handle_get_value: <private>
747 2019-05-04 15:33:46:453 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:48 iPhone-de-Tienda lockdownd[68] <Notice>: handle_get_value: <private>
751 2019-05-04 15:33:46:553 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:48 iPhone-de-Tienda trustd[108] <Notice>: cert[0]: MissingIntermediate =(leaf)[force]> 0
752 2019-05-04 15:33:46:553 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:48 iPhone-de-Tienda trustd[108] <Notice>: cert[0]: NonEmptySubject =(path)[]> 0
753 2019-05-04 15:33:46:569 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:48 iPhone-de-Tienda lockdownd[68] <Notice>: handle_start_service: <private>
754 2019-05-04 15:33:46:570 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:48 iPhone-de-Tienda lockdownd[68] <Notice>: MAEGate_GetBrickState: <private>
755 2019-05-04 15:33:46:573 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:48 iPhone-de-Tienda lockdownd[68] <Notice>: spawn_xpc_service: <private>
756 2019-05-04 15:33:46:576 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:48 iPhone-de-Tienda lockdownd[68] <Notice>: spawn_xpc_service_block_invoke: <private>
757 2019-05-04 15:33:46:576 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:48 iPhone-de-Tienda lockdownd[68] <Notice>: spawn_xpc_service_block_invoke: <private>
758 2019-05-04 15:33:46:590 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:48 iPhone-de-Tienda lockdownd[68] <Notice>: handle_get_value: <private>
759 2019-05-04 15:33:46:593 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:48 iPhone-de-Tienda lockdownd[68] <Notice>: handle_get_value: <private>
760 2019-05-04 15:33:46:602 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:48 iPhone-de-Tienda lockdownd[68] <Notice>: handle_get_value: <private>
761 2019-05-04 15:33:46:607 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:48 iPhone-de-Tienda lockdownd[68] <Notice>: handle_get_value: <private>
762 2019-05-04 15:33:46:618 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:48 iPhone-de-Tienda lockdownd[68] <Notice>: handle_get_value: <private>
763 2019-05-04 15:33:46:621 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:48 iPhone-de-Tienda lockdownd[68] <Notice>: handle_get_value: <private>
764 2019-05-04 15:33:46:685 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:48 iPhone-de-Tienda trustd[108] <Notice>: cert[0]: MissingIntermediate =(leaf)[force]> 0
765 2019-05-04 15:33:46:685 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:48 iPhone-de-Tienda trustd[108] <Notice>: cert[0]: NonEmptySubject =(path)[]> 0
766 2019-05-04 15:33:46:691 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:48 iPhone-de-Tienda lockdownd[68] <Notice>: handle_start_service: <private>
767 2019-05-04 15:33:46:691 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:48 iPhone-de-Tienda lockdownd[68] <Notice>: MAEGate_GetBrickState: <private>
768 2019-05-04 15:33:46:692 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:48 iPhone-de-Tienda lockdownd[68] <Notice>: spawn_xpc_service: <private>
769 2019-05-04 15:33:46:694 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:48 iPhone-de-Tienda lockdownd[68] <Notice>: spawn_xpc_service_block_invoke: <private>
770 2019-05-04 15:33:46:694 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:48 iPhone-de-Tienda lockdownd[68] <Notice>: spawn_xpc_service_block_invoke: <private>
771 2019-05-04 15:33:46:699 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:48 iPhone-de-Tienda trustd[108] <Notice>: cert[0]: MissingIntermediate =(leaf)[force]> 0
772 2019-05-04 15:33:46:699 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:48 iPhone-de-Tienda trustd[108] <Notice>: cert[0]: NonEmptySubject =(path)[]> 0
773 2019-05-04 15:33:46:706 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:48 iPhone-de-Tienda lockdownd[68] <Notice>: handle_start_service: <private>
774 2019-05-04 15:33:46:706 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:48 iPhone-de-Tienda lockdownd[68] <Notice>: MAEGate_GetBrickState: <private>
775 2019-05-04 15:33:46:707 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:48 iPhone-de-Tienda lockdownd[68] <Notice>: spawn_xpc_service: <private>
776 2019-05-04 15:33:46:709 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:48 iPhone-de-Tienda lockdownd[68] <Notice>: spawn_xpc_service_block_invoke: <private>
777 2019-05-04 15:33:46:710 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:48 iPhone-de-Tienda lockdownd[68] <Notice>: spawn_xpc_service_block_invoke: <private>
778 2019-05-04 15:33:46:726 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:48 iPhone-de-Tienda lockdownd[68] <Notice>: handle_get_value: <private>
779 2019-05-04 15:33:46:729 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:48 iPhone-de-Tienda lockdownd[68] <Notice>: handle_get_value: <private>
780 iOSLog
781 2019-05-04 15:33:46:735 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:48 iPhone-de-Tienda HeuristicInterpreter[209] <Notice>: Newly created actions and expirers: 1
782 2019-05-04 15:33:46:736 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:48 iPhone-de-Tienda HeuristicInterpreter[209] <Notice>: [1 of 1] Heuristic: <private>, Actions: None, Expirers: <private>
783 iOSLog
784 2019-05-04 15:33:46:740 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:48 iPhone-de-Tienda UserEventAgent(com.apple.cts)[24] <Notice>: Unregistered XPC Activity: com.apple.duetexpertd.display-cache-update
785 2019-05-04 15:33:46:740 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:48 iPhone-de-Tienda UserEventAgent(com.apple.cts)[24] <Notice>: Creating XPC Activity: com.apple.duetexpertd.display-cache-update
786 2019-05-04 15:33:46:741 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:48 iPhone-de-Tienda UserEventAgent(DuetActivityScheduler)[24] <Notice>: SUBMITTING: <private>
787 iOSLog
788 2019-05-04 15:33:46:742 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:48 iPhone-de-Tienda UserEventAgent(com.apple.cts)[24] <Notice>: Registered XPC Activity: com.apple.duetexpertd.display-cache-update
789 2019-05-04 15:33:46:743 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:48 iPhone-de-Tienda dasd(DuetActivitySchedulerDaemon)[132] <Notice>: Don't have <private> for type 0
790 2019-05-04 15:33:46:743 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:48 iPhone-de-Tienda dasd(DuetActivitySchedulerDaemon)[132] <Notice>: Don't have <private> for type 1
791 2019-05-04 15:33:46:744 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:48 iPhone-de-Tienda dasd(DuetActivitySchedulerDaemon)[132] <Error>: Activity <private> not tracked as being started, ignoring it
792 iOSLog
793 iOSLog
794 2019-05-04 15:33:46:805 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:48 iPhone-de-Tienda trustd[108] <Notice>: cert[0]: MissingIntermediate =(leaf)[force]> 0
795 2019-05-04 15:33:46:805 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:48 iPhone-de-Tienda trustd[108] <Notice>: cert[0]: NonEmptySubject =(path)[]> 0
796 2019-05-04 15:33:46:811 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:48 iPhone-de-Tienda lockdownd[68] <Notice>: handle_get_value: <private>
797 2019-05-04 15:33:46:815 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:48 iPhone-de-Tienda lockdownd[68] <Notice>: handle_get_value: <private>
798 2019-05-04 15:33:46:816 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:48 iPhone-de-Tienda lockdownd[68] <Notice>: handle_get_value: <private>
799 2019-05-04 15:33:46:818 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:48 iPhone-de-Tienda lockdownd[68] <Notice>: handle_start_service: <private>
800 2019-05-04 15:33:46:818 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:48 iPhone-de-Tienda lockdownd[68] <Notice>: MAEGate_GetBrickState: <private>
801 2019-05-04 15:33:46:819 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:48 iPhone-de-Tienda lockdownd[68] <Notice>: spawn_xpc_service: <private>
802 2019-05-04 15:33:46:821 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:48 iPhone-de-Tienda lockdownd[68] <Notice>: spawn_xpc_service_block_invoke: <private>
803 2019-05-04 15:33:46:821 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:48 iPhone-de-Tienda lockdownd[68] <Notice>: spawn_xpc_service_block_invoke: <private>
804 2019-05-04 15:33:46:824 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:48 iPhone-de-Tienda streaming_zip_conduit(StreamingZip)[243] <Notice>: <private>: initialized with path: <private> options: <private>
805 2019-05-04 15:33:46:824 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:48 iPhone-de-Tienda streaming_zip_conduit(StreamingZip)[243] <Notice>: <private>: preparing
806 2019-05-04 15:33:46:825 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:48 iPhone-de-Tienda com.apple.StreamingUnzipService[244] <Notice>: Got connection from process <private>
807 iOSLog
808 iOSLog
809 2019-05-04 15:33:46:895 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:48 iPhone-de-Tienda configd(IPConfiguration)[34] <Notice>: AUTOMATIC-V6 en2: reported address acquisition failure symptom
810 2019-05-04 15:33:46:928 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:48 iPhone-de-Tienda lsd(CoreServices)[86] <Notice>: Writing identifiers file to <private>.
811 iOSLog
812 iOSLog
813 2019-05-04 15:33:47:450 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:49 iPhone-de-Tienda CommCenter(libARIServer.dylib)[79] <Notice>: ind: Bin=[<private>]
817 2019-05-04 15:33:47:527 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:49 iPhone-de-Tienda streaming_zip_conduit(StreamingZip)[243] <Notice>: <private>: finishing stream
818 2019-05-04 15:33:47:528 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:49 iPhone-de-Tienda com.apple.StreamingUnzipService(StreamingZip)[244] <Notice>: Finishing extraction for <private>
819 2019-05-04 15:33:47:531 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:49 iPhone-de-Tienda streaming_zip_conduit(StreamingZip)[243] <Notice>: <private>: calling completion block with error (null)
820 2019-05-04 15:33:47:532 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:49 iPhone-de-Tienda streaming_zip_conduit(StreamingZip)[243] <Notice>: <private>: invalidating
821 2019-05-04 15:33:47:532 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:49 iPhone-de-Tienda com.apple.StreamingUnzipService(StreamingZip)[244] <Notice>: Deallocating state for extraction to <private>
822 iOSLog
823 2019-05-04 15:33:47:534 - [iOSLog] [IOS_SYSLOG_ROW] AllowInstallLocalProvisioned = 1;
824 2019-05-04 15:33:47:534 - [iOSLog] [IOS_SYSLOG_ROW] CFBundleIdentifier = "com.apple.test.WebDriverAgentRunner-Runner";
825 2019-05-04 15:33:47:534 - [iOSLog] [IOS_SYSLOG_ROW] DisableDeltaTransfer = 1;
826 2019-05-04 15:33:47:534 - [iOSLog] [IOS_SYSLOG_ROW] InstallDeltaTypeKey = InstallDeltaTypeSparseIPAFiles;
827 2019-05-04 15:33:47:535 - [iOSLog] [IOS_SYSLOG_ROW] IsUserInitiated = 1;
828 2019-05-04 15:33:47:535 - [iOSLog] [IOS_SYSLOG_ROW] PackageType = Developer;
829 2019-05-04 15:33:47:535 - [iOSLog] [IOS_SYSLOG_ROW] }
830 iOSLog
831 2019-05-04 15:33:47:537 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:49 iPhone-de-Tienda streaming_zip_conduit(CoreServices)[243] <Notice>: created clientInstaller for type InstallApplication
832 iOSLog
833 2019-05-04 15:33:47:539 - [iOSLog] [IOS_SYSLOG_ROW] AllowInstallLocalProvisioned = 1;
834 2019-05-04 15:33:47:539 - [iOSLog] [IOS_SYSLOG_ROW] CFBundleIdentifier = "com.apple.test.WebDriverAgentRunner-Runner";
835 2019-05-04 15:33:47:539 - [iOSLog] [IOS_SYSLOG_ROW] DisableDeltaTransfer = 1;
836 2019-05-04 15:33:47:539 - [iOSLog] [IOS_SYSLOG_ROW] InstallDeltaTypeKey = InstallDeltaTypeSparseIPAFiles;
837 2019-05-04 15:33:47:539 - [iOSLog] [IOS_SYSLOG_ROW] IsUserInitiated = 1;
838 2019-05-04 15:33:47:540 - [iOSLog] [IOS_SYSLOG_ROW] PackageType = Developer;
839 2019-05-04 15:33:47:540 - [iOSLog] [IOS_SYSLOG_ROW] }
840 iOSLog
841 2019-05-04 15:33:47:540 - [iOSLog] [IOS_SYSLOG_ROW] AllowInstallLocalProvisioned = 1;
842 2019-05-04 15:33:47:541 - [iOSLog] [IOS_SYSLOG_ROW] CFBundleIdentifier = "com.apple.test.WebDriverAgentRunner-Runner";
843 2019-05-04 15:33:47:541 - [iOSLog] [IOS_SYSLOG_ROW] DisableDeltaTransfer = 1;
844 2019-05-04 15:33:47:541 - [iOSLog] [IOS_SYSLOG_ROW] InstallDeltaTypeKey = InstallDeltaTypeSparseIPAFiles;
845 2019-05-04 15:33:47:541 - [iOSLog] [IOS_SYSLOG_ROW] IsUserInitiated = 1;
846 2019-05-04 15:33:47:541 - [iOSLog] [IOS_SYSLOG_ROW] PackageType = Developer;
847 2019-05-04 15:33:47:541 - [iOSLog] [IOS_SYSLOG_ROW] }
848 iOSLog
849 iOSLog
850 iOSLog
851 2019-05-04 15:33:47:569 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:49 iPhone-de-Tienda assertiond[65] <Notice>: Acquisition success for assertion <private>: <private>
852 iOSLog
853 iOSLog
854 iOSLog
855 2019-05-04 15:33:47:575 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:49 iPhone-de-Tienda installd(MobileInstallation)[48] <Notice>: com.apple.test.WebDriverAgentRunner-Runner:7:5:1:1:Start : Install (New)
856 2019-05-04 15:33:47:586 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:49 iPhone-de-Tienda misagent(libMobileGestalt.dylib)[107] <Notice>: taking platform fast path for key: re6Zb+zwFKJNlkQTUeT+/w
857 2019-05-04 15:33:47:594 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:49 iPhone-de-Tienda profiled(libdispatch.dylib)[102] <Notice>: Provisioning profiles changed
858 2019-05-04 15:33:47:595 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:49 iPhone-de-Tienda profiled[102] <Notice>: Updating MIS trust...
859 2019-05-04 15:33:47:598 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:49 iPhone-de-Tienda trustd[108] <Notice>: cert[0]: SubjectCommonName =(leaf)[]> 0
860 2019-05-04 15:33:47:598 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:49 iPhone-de-Tienda trustd[108] <Notice>: cert[0]: LeafMarkerOid =(leaf)[]> 0
861 2019-05-04 15:33:47:603 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:49 iPhone-de-Tienda trustd[108] <Notice>: OCSPSingleResponse: nextUpdate 0.20 days ago
862 2019-05-04 15:33:47:603 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:49 iPhone-de-Tienda trustd[108] <Notice>: cert[0]: IssuerCommonName =(path)[]> 0
863 2019-05-04 15:33:47:604 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:49 iPhone-de-Tienda installd(Security)[48] <Notice>: Trust evaluate failure: [leaf IssuerCommonName LeafMarkerOid SubjectCommonName]
864 2019-05-04 15:33:47:606 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:49 iPhone-de-Tienda trustd[108] <Notice>: cert[0]: SubjectCommonName =(leaf)[]> 0
865 2019-05-04 15:33:47:606 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:49 iPhone-de-Tienda trustd[108] <Notice>: cert[0]: LeafMarkerOid =(leaf)[]> 0
866 2019-05-04 15:33:47:606 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:49 iPhone-de-Tienda lockdownd[68] <Notice>: handle_get_value: <private>
867 2019-05-04 15:33:47:607 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:49 iPhone-de-Tienda lockdownd[68] <Notice>: handle_get_value: <private>
868 iOSLog
869 2019-05-04 15:33:47:610 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:49 iPhone-de-Tienda lockdownd[68] <Notice>: handle_get_value: <private>
870 2019-05-04 15:33:47:611 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:49 iPhone-de-Tienda trustd[108] <Notice>: OCSPSingleResponse: nextUpdate 0.20 days ago
871 2019-05-04 15:33:47:611 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:49 iPhone-de-Tienda trustd[108] <Notice>: cert[0]: IssuerCommonName =(path)[]> 0
872 2019-05-04 15:33:47:612 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:49 iPhone-de-Tienda installd(Security)[48] <Notice>: Trust evaluate failure: [leaf IssuerCommonName LeafMarkerOid SubjectCommonName]
873 2019-05-04 15:33:47:612 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:49 iPhone-de-Tienda trustd[108] <Notice>: cert[0]: SubjectCommonName =(leaf)[]> 0
874 2019-05-04 15:33:47:612 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:49 iPhone-de-Tienda trustd[108] <Notice>: cert[0]: LeafMarkerOid =(leaf)[]> 0
875 2019-05-04 15:33:47:613 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:49 iPhone-de-Tienda lockdownd[68] <Notice>: handle_get_value: <private>
876 2019-05-04 15:33:47:616 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:49 iPhone-de-Tienda trustd[108] <Notice>: OCSPSingleResponse: nextUpdate 0.20 days ago
877 2019-05-04 15:33:47:617 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:49 iPhone-de-Tienda trustd[108] <Notice>: cert[0]: IssuerCommonName =(path)[]> 0
878 2019-05-04 15:33:47:618 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:49 iPhone-de-Tienda installd(Security)[48] <Notice>: Trust evaluate failure: [leaf IssuerCommonName LeafMarkerOid SubjectCommonName]
879 2019-05-04 15:33:47:619 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:49 iPhone-de-Tienda trustd[108] <Notice>: OCSPSingleResponse: nextUpdate 0.20 days ago
880 2019-05-04 15:33:47:621 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:49 iPhone-de-Tienda trustd(CFNetwork)[108] <Notice>: Task <7EA0F9A3-9108-4E48-8333-C5AB3F9082A4>.<1> resuming, QOS(0x19)
881 2019-05-04 15:33:47:621 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:49 iPhone-de-Tienda trustd(CFNetwork)[108] <Notice>: TIC TCP Conn Start [37:0x102748400]
882 2019-05-04 15:33:47:622 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:49 iPhone-de-Tienda trustd(libnetwork.dylib)[108] <Notice>: [C37 Hostname#f0ba2cb8:80 tcp, pid: 48, url hash: 2a6a8b48] start
883 iOSLog
884 2019-05-04 15:33:47:623 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:49 iPhone-de-Tienda trustd(CFNetwork)[108] <Notice>: Task <7EA0F9A3-9108-4E48-8333-C5AB3F9082A4>.<1> setting up Connection 37
885 iOSLog
886 iOSLog
887 2019-05-04 15:33:47:671 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:49 iPhone-de-Tienda trustd(libnetwork.dylib)[108] <Notice>: nw_connection_report_state_with_handler_locked [C37] reporting state ready
888 2019-05-04 15:33:47:671 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:49 iPhone-de-Tienda trustd(CFNetwork)[108] <Notice>: TIC TCP Conn Connected [37:0x102748400]: Err(16)
889 2019-05-04 15:33:47:672 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:49 iPhone-de-Tienda trustd(CFNetwork)[108] <Notice>: TIC TCP Conn Event [37:0x102748400]: 1
890 2019-05-04 15:33:47:672 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:49 iPhone-de-Tienda trustd(CFNetwork)[108] <Notice>: Task <7EA0F9A3-9108-4E48-8333-C5AB3F9082A4>.<1> now using Connection 37
891 2019-05-04 15:33:47:673 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:49 iPhone-de-Tienda trustd(CFNetwork)[108] <Notice>: Task <7EA0F9A3-9108-4E48-8333-C5AB3F9082A4>.<1> sent request, body N
892 2019-05-04 15:33:47:713 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:49 iPhone-de-Tienda trustd[108] <Notice>: cert[0]: MissingIntermediate =(leaf)[force]> 0
893 2019-05-04 15:33:47:713 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:49 iPhone-de-Tienda trustd[108] <Notice>: cert[0]: NonEmptySubject =(path)[]> 0
894 2019-05-04 15:33:47:725 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:49 iPhone-de-Tienda trustd[108] <Notice>: cert[0]: MissingIntermediate =(leaf)[force]> 0
895 2019-05-04 15:33:47:725 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:49 iPhone-de-Tienda trustd[108] <Notice>: cert[0]: NonEmptySubject =(path)[]> 0
896 2019-05-04 15:33:47:733 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:49 iPhone-de-Tienda lockdownd[68] <Notice>: handle_start_service: <private>
897 2019-05-04 15:33:47:733 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:49 iPhone-de-Tienda lockdownd[68] <Notice>: MAEGate_GetBrickState: <private>
898 2019-05-04 15:33:47:737 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:49 iPhone-de-Tienda lockdownd[68] <Notice>: spawn_xpc_service: <private>
899 2019-05-04 15:33:47:738 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:49 iPhone-de-Tienda lockdownd[68] <Notice>: handle_start_service: <private>
900 2019-05-04 15:33:47:738 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:49 iPhone-de-Tienda lockdownd[68] <Notice>: MAEGate_GetBrickState: <private>
901 2019-05-04 15:33:47:740 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:49 iPhone-de-Tienda lockdownd[68] <Notice>: spawn_xpc_service: <private>
902 2019-05-04 15:33:47:813 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:49 iPhone-de-Tienda UserEventAgent(PersistentConnection)[24] <Notice>: Invalidating simple timer <PCSimpleTimer: 0x13fe56210>
903 iOSLog
904 iOSLog
905 iOSLog
906 iOSLog
907 iOSLog
908 2019-05-04 15:33:47:949 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:49 iPhone-de-Tienda trustd(CFNetwork)[108] <Notice>: Task <7EA0F9A3-9108-4E48-8333-C5AB3F9082A4>.<1> response ended
909 2019-05-04 15:33:47:949 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:49 iPhone-de-Tienda trustd(CFNetwork)[108] <Notice>: Task <7EA0F9A3-9108-4E48-8333-C5AB3F9082A4>.<1> done using Connection 37
910 2019-05-04 15:33:47:957 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:49 iPhone-de-Tienda trustd(CFNetwork)[108] <Notice>: removing all entries config 0x10200a7f0
911 2019-05-04 15:33:47:958 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:49 iPhone-de-Tienda trustd(CFNetwork)[108] <Notice>: TIC TCP Conn Cancel [37:0x102748400]
912 2019-05-04 15:33:47:959 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:49 iPhone-de-Tienda trustd(libnetwork.dylib)[108] <Notice>: [C37 Hostname#f0ba2cb8:80 tcp, pid: 48, url hash: 2a6a8b48] cancel
913 2019-05-04 15:33:47:960 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:49 iPhone-de-Tienda trustd(libnetwork.dylib)[108] <Notice>: [C37 Hostname#f0ba2cb8:80 tcp, pid: 48, url hash: 2a6a8b48] cancelled
914 2019-05-04 15:33:47:961 - [iOSLog] [IOS_SYSLOG_ROW] [C37.1 <private> 192.168.1.45:52821<->IPv4#2cde7361:80]
915 2019-05-04 15:33:47:961 - [iOSLog] [IOS_SYSLOG_ROW] Connected Path: satisfied (Path is satisfied), interface: en0, ipv4, dns
916 2019-05-04 15:33:47:962 - [iOSLog] [IOS_SYSLOG_ROW] Duration: 0.335s, DNS @0.000s took 0.011s, TCP @0.014s took 0.001s
917 2019-05-04 15:33:47:962 - [iOSLog] [IOS_SYSLOG_ROW] bytes in/out: 4355/295, packets in/out: 4/1, rtt: 0.031s, retransmitted packets: 0, out-of-order packets: 0
918 2019-05-04 15:33:47:963 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:49 iPhone-de-Tienda trustd(libnetwork.dylib)[108] <Notice>: 0.000s [C37 <private> Hostname#f0ba2cb8:80 resolver] path:start
919 2019-05-04 15:33:47:963 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:49 iPhone-de-Tienda trustd(libnetwork.dylib)[108] <Notice>: 0.000s [C37 <private> Hostname#f0ba2cb8:80 resolver] path:satisfied
920 2019-05-04 15:33:47:964 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:49 iPhone-de-Tienda trustd(libnetwork.dylib)[108] <Notice>: 0.000s [C37 <private> Hostname#f0ba2cb8:80 resolver] resolver:start_dns
921 2019-05-04 15:33:47:964 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:49 iPhone-de-Tienda trustd(libnetwork.dylib)[108] <Notice>: 0.011s [C37 <private> Hostname#f0ba2cb8:80 resolver] resolver:receive_dns
922 iOSLog
923 iOSLog
924 iOSLog
925 iOSLog
926 iOSLog
927 iOSLog
928 2019-05-04 15:33:47:969 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:49 iPhone-de-Tienda trustd(libnetwork.dylib)[108] <Notice>: 0.046s [C37 <private> Hostname#f0ba2cb8:80 resolver] flow:finish_transport
929 iOSLog
930 2019-05-04 15:33:47:970 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:49 iPhone-de-Tienda trustd(libnetwork.dylib)[108] <Notice>: 0.047s [C37 <private> Hostname#f0ba2cb8:80 resolver] flow:finish_connect
931 iOSLog
932 2019-05-04 15:33:47:970 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:49 iPhone-de-Tienda trustd(libnetwork.dylib)[108] <Notice>: 0.047s [C37 <private> Hostname#f0ba2cb8:80 resolver] flow:changed_viability
933 2019-05-04 15:33:47:971 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:49 iPhone-de-Tienda trustd(libnetwork.dylib)[108] <Notice>: 0.335s [C37] path:cancel
934 2019-05-04 15:33:47:971 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:49 iPhone-de-Tienda trustd(libusrtcp.dylib)[108] <Notice>: nw_protocol_tcp_log_summary [C37.1:2]
935 2019-05-04 15:33:47:971 - [iOSLog] [IOS_SYSLOG_ROW] [<private> <private>:52821<-><private>:80]
936 2019-05-04 15:33:47:971 - [iOSLog] [IOS_SYSLOG_ROW] Init: 1, Conn_Time: 32.541ms, Syn's: 1, WR_T: 0/0, RD_T: 0/0, TFO: 0/0/0, ECN: 0/0/0, TS: 1
937 2019-05-04 15:33:47:972 - [iOSLog] [IOS_SYSLOG_ROW] RTT_Cache: none, rtt_upd: 2, rtt: 31.875ms, rtt_var: 12.250ms rtt_nc: 31.875ms, rtt_var_nc: 12.250ms
938 iOSLog
939 iOSLog
940 2019-05-04 15:33:47:973 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:49 iPhone-de-Tienda trustd(CFNetwork)[108] <Notice>: removing all entries config 0x10200a7f0
941 2019-05-04 15:33:47:973 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:49 iPhone-de-Tienda installd(libMobileGestalt.dylib)[48] <Notice>: elided platform fast path for key: re6Zb+zwFKJNlkQTUeT+/w
942 2019-05-04 15:33:48:016 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:49 iPhone-de-Tienda trustd[108] <Notice>: cert[0]: SubjectCommonName =(leaf)[]> 0
943 2019-05-04 15:33:48:016 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:49 iPhone-de-Tienda trustd[108] <Notice>: cert[0]: LeafMarkerOid =(leaf)[]> 0
944 2019-05-04 15:33:48:020 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:49 iPhone-de-Tienda trustd[108] <Notice>: cert[0]: IssuerCommonName =(path)[]> 0
945 2019-05-04 15:33:48:021 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:49 iPhone-de-Tienda installd(Security)[48] <Notice>: Trust evaluate failure: [leaf IssuerCommonName LeafMarkerOid SubjectCommonName]
946 2019-05-04 15:33:48:022 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:49 iPhone-de-Tienda installd(libMobileGestalt.dylib)[48] <Notice>: elided platform fast path for key: re6Zb+zwFKJNlkQTUeT+/w
947 2019-05-04 15:33:48:035 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:49 iPhone-de-Tienda trustd[108] <Notice>: cert[0]: SubjectCommonName =(leaf)[]> 0
948 2019-05-04 15:33:48:035 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:49 iPhone-de-Tienda trustd[108] <Notice>: cert[0]: LeafMarkerOid =(leaf)[]> 0
949 2019-05-04 15:33:48:039 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:49 iPhone-de-Tienda trustd[108] <Notice>: cert[0]: IssuerCommonName =(path)[]> 0
950 2019-05-04 15:33:48:039 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:49 iPhone-de-Tienda installd(Security)[48] <Notice>: Trust evaluate failure: [leaf IssuerCommonName LeafMarkerOid SubjectCommonName]
951 2019-05-04 15:33:48:041 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:49 iPhone-de-Tienda installd(libMobileGestalt.dylib)[48] <Notice>: elided platform fast path for key: re6Zb+zwFKJNlkQTUeT+/w
952 iOSLog
953 iOSLog
954 iOSLog
955 iOSLog
956 iOSLog
957 iOSLog
958 iOSLog
959 2019-05-04 15:33:48:118 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:49 iPhone-de-Tienda assertiond[65] <Notice>: -[BKAssertion dealloc] - <0x104f17570>
960 iOSLog
961 iOSLog
962 iOSLog
963 2019-05-04 15:33:48:122 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:49 iPhone-de-Tienda lsd(CoreServices)[86] <Notice>: No bundles to remove for <private>
964 2019-05-04 15:33:48:123 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:49 iPhone-de-Tienda lsd(CoreServices)[86] <Notice>: Parsed Info.plist for <private>
965 2019-05-04 15:33:48:123 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:49 iPhone-de-Tienda lsd(CoreServices)[86] <Notice>: Parsed MobileInstallation data for <private>
966 iOSLog
967 2019-05-04 15:33:48:124 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:49 iPhone-de-Tienda lsdiconservice[139] <Notice>: clearCachedItemsForBundeID: <private>
968 2019-05-04 15:33:48:124 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:49 iPhone-de-Tienda lsdiconservice[139] <Notice>: Clearing icons for bundle <private> (<private>)
969 2019-05-04 15:33:48:126 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:49 iPhone-de-Tienda lsdiconservice[139] <Notice>: Clearing alternateIcon for <private>
970 iOSLog
971 iOSLog
972 2019-05-04 15:33:48:129 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:49 iPhone-de-Tienda lsd(MobileInstallation)[86] <Notice>: com.apple.test.WebDriverAgentRunner-Runner:5:4:2:1:Registering bundles - end
973 2019-05-04 15:33:48:129 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:49 iPhone-de-Tienda lsd(CoreServices)[86] <Notice>: Installation ended for <private> with state 5
974 2019-05-04 15:33:48:130 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:49 iPhone-de-Tienda lsd(CoreServices)[86] <Notice>: Sending applicationsDidInstall: for <private>
975 2019-05-04 15:33:48:143 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:49 iPhone-de-Tienda SpringBoard(CoreServices)[55] <Notice>: Received applicationsDidInstall:<private>
976 2019-05-04 15:33:48:144 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:49 iPhone-de-Tienda SpringBoard(DeviceManagement)[55] <Notice>: Received notification of categories change, possible unlock
977 iOSLog
978 2019-05-04 15:33:48:146 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:49 iPhone-de-Tienda SpringBoard(CoreServices)[55] <Notice>: <private>
979 iOSLog
980 iOSLog
981 2019-05-04 15:33:48:149 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:49 iPhone-de-Tienda aggregated(CoreServices)[910] <Notice>: Received applicationsDidInstall:<private>
982 2019-05-04 15:33:48:150 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:49 iPhone-de-Tienda aggregated(CoreServices)[910] <Notice>: <private>
983 iOSLog
984 2019-05-04 15:33:48:155 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:49 iPhone-de-Tienda watchlistd(CoreServices)[161] <Notice>: Received applicationsDidInstall:<private>
985 2019-05-04 15:33:48:155 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:49 iPhone-de-Tienda watchlistd(CoreServices)[161] <Notice>: <private>
986 iOSLog
987 iOSLog
988 2019-05-04 15:33:48:156 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:49 iPhone-de-Tienda watchlistd(WatchListKit)[161] <Notice>: WLKAppLibraryCore - enumerate user apps elapsed time: 0.00311
989 2019-05-04 15:33:48:157 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:49 iPhone-de-Tienda dasd(CoreServices)[132] <Notice>: Received applicationsDidInstall:<private>
990 2019-05-04 15:33:48:157 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:49 iPhone-de-Tienda dasd(CoreServices)[132] <Notice>: <private>
991 iOSLog
992 2019-05-04 15:33:48:160 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:49 iPhone-de-Tienda UserEventAgent(CoreServices)[24] <Notice>: Received applicationsDidInstall:<private>
993 2019-05-04 15:33:48:161 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:49 iPhone-de-Tienda UserEventAgent(CoreServices)[24] <Notice>: <private>
994 iOSLog
995 2019-05-04 15:33:48:164 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:49 iPhone-de-Tienda atc(CoreServices)[38] <Notice>: Received applicationsDidInstall:<private>
996 2019-05-04 15:33:48:164 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:49 iPhone-de-Tienda atc(CoreServices)[38] <Notice>: <private>
997 iOSLog
998 2019-05-04 15:33:48:165 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:49 iPhone-de-Tienda nsurlsessiond(CoreServices)[94] <Notice>: Received applicationsDidInstall:<private>
999 2019-05-04 15:33:48:166 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:49 iPhone-de-Tienda nsurlsessiond(CoreServices)[94] <Notice>: <private>
1000 iOSLog
1001 2019-05-04 15:33:48:168 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:49 iPhone-de-Tienda duetexpertd(DeviceManagement)[185] <Notice>: Received notification of categories change, possible unlock
1002 iOSLog
1003 2019-05-04 15:33:48:169 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:49 iPhone-de-Tienda duetexpertd(AppPredictionInternal)[185] <Notice>: Adding install date for recently installed app: <private>
1004 2019-05-04 15:33:48:169 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:49 iPhone-de-Tienda profiled(CoreServices)[102] <Notice>: Received applicationsDidInstall:<private>
1005 2019-05-04 15:33:48:170 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:49 iPhone-de-Tienda profiled(CoreServices)[102] <Notice>: <private>
1006 iOSLog
1007 iOSLog
1008 2019-05-04 15:33:48:172 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:49 iPhone-de-Tienda streaming_zip_conduit(CoreServices)[243] <Notice>: Connection invalidated to installationCallbackInterface
1009 2019-05-04 15:33:48:172 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:49 iPhone-de-Tienda homed(CoreServices)[294] <Notice>: Received applicationsDidInstall:<private>
1010 iOSLog
1011 2019-05-04 15:33:48:174 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:49 iPhone-de-Tienda homed(CoreServices)[294] <Notice>: <private>
1012 2019-05-04 15:33:48:175 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:49 iPhone-de-Tienda mediaserverd(DeviceManagement)[28] <Notice>: Received notification of categories change, possible unlock
1013 iOSLog
1014 iOSLog
1015 iOSLog
1016 2019-05-04 15:33:48:179 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:49 iPhone-de-Tienda contextstored(CoreServices)[116] <Notice>: Received applicationsDidInstall:<private>
1017 iOSLog
1018 2019-05-04 15:33:48:181 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:49 iPhone-de-Tienda contextstored(CoreServices)[116] <Notice>: <private>
1019 iOSLog
1020 2019-05-04 15:33:48:182 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:49 iPhone-de-Tienda bluetoothd(CoreServices)[77] <Notice>: Received applicationsDidInstall:<private>
1021 iOSLog
1022 iOSLog
1023 2019-05-04 15:33:48:185 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:49 iPhone-de-Tienda bluetoothd(CoreServices)[77] <Notice>: <private>
1024 2019-05-04 15:33:48:186 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:49 iPhone-de-Tienda routined(CoreServices)[32] <Notice>: Received applicationsDidInstall:<private>
1025 iOSLog
1026 iOSLog
1027 2019-05-04 15:33:48:189 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:49 iPhone-de-Tienda routined(CoreServices)[32] <Notice>: <private>
1028 iOSLog
1029 2019-05-04 15:33:48:190 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:49 iPhone-de-Tienda CommCenter[79] <Notice>: #I Apps installed on the device: <private>
1030 iOSLog
1031 2019-05-04 15:33:48:192 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:49 iPhone-de-Tienda SpringBoard[55] <Notice>: Installed apps did change.
1032 2019-05-04 15:33:48:192 - [iOSLog] [IOS_SYSLOG_ROW] Added: {(
1033 2019-05-04 15:33:48:192 - [iOSLog] [IOS_SYSLOG_ROW] "com.apple.test.WebDriverAgentRunner-Runner"
1034 2019-05-04 15:33:48:192 - [iOSLog] [IOS_SYSLOG_ROW] )}
1035 2019-05-04 15:33:48:193 - [iOSLog] [IOS_SYSLOG_ROW] Removed: {(
1036 2019-05-04 15:33:48:193 - [iOSLog] [IOS_SYSLOG_ROW] )}
1037 2019-05-04 15:33:48:193 - [iOSLog] [IOS_SYSLOG_ROW] Replaced: {(
1038 2019-05-04 15:33:48:194 - [iOSLog] [IOS_SYSLOG_ROW] )}
1039 2019-05-04 15:33:48:194 - [iOSLog] [IOS_SYSLOG_ROW] Updated: (null)
1040 2019-05-04 15:33:48:194 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:49 iPhone-de-Tienda CommCenter[79] <Notice>: #I Adding default rules on the device for: <private>
1041 2019-05-04 15:33:48:194 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:49 iPhone-de-Tienda routined(libcoreroutine.dylib)[32] <Notice>: creating application proxy, <private>
1042 2019-05-04 15:33:48:195 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:49 iPhone-de-Tienda SpringBoard(CoreServices)[55] <Notice>: Failed to find icon for <private> in the cache, calling out to generate it
1043 2019-05-04 15:33:48:196 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:49 iPhone-de-Tienda CommCenter[79] <Notice>: #I Current NEConfiguration: <private>
1044 2019-05-04 15:33:48:196 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:49 iPhone-de-Tienda callservicesd[136] <Notice>: Launched by application installed notification
1045 2019-05-04 15:33:48:196 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:49 iPhone-de-Tienda SpringBoard(CoreServices)[55] <Notice>: No entry for <private> found in cache, generating icon
1046 iOSLog
1047 2019-05-04 15:33:48:198 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:49 iPhone-de-Tienda lsdiconservice[139] <Notice>: Generating icon data for <private> <32> (null)
1048 iOSLog
1049 2019-05-04 15:33:48:199 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:49 iPhone-de-Tienda CommCenter[79] <Notice>: #I Current NEConfiguration: <private>
1050 iOSLog
1051 2019-05-04 15:33:48:200 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:49 iPhone-de-Tienda CommCenter[79] <Notice>: #I Performing save operation on ne configuration: <private>
1052 iOSLog
1053 2019-05-04 15:33:48:203 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:49 iPhone-de-Tienda duetexpertd[185] <Notice>: --- handled event <private> ---
1054 2019-05-04 15:33:48:203 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:49 iPhone-de-Tienda lsdiconservice(CoreServices)[139] <Notice>: Got data from new cache entry for icon <private>
1055 2019-05-04 15:33:48:203 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:49 iPhone-de-Tienda SpringBoard(CoreServices)[55] <Notice>: Got data from new cache entry for icon <private>
1056 2019-05-04 15:33:48:204 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:49 iPhone-de-Tienda SpringBoard[55] <Notice>: SBRootFolderView initiating programmatic scroll - animated: NO
1057 2019-05-04 15:33:48:204 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:49 iPhone-de-Tienda nehelper[89] <Notice>: Did not find any legacy VPN apps
1058 2019-05-04 15:33:48:205 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:49 iPhone-de-Tienda SpringBoard(DeviceManagement)[55] <Notice>: Received callback for registration dmf.policy.monitor.app
1059 2019-05-04 15:33:48:205 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:49 iPhone-de-Tienda duetexpertd(DeviceManagement)[185] <Notice>: Received callback for registration dmf.policy.monitor.app
1060 2019-05-04 15:33:48:206 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:49 iPhone-de-Tienda duetexpertd(DeviceManagement)[185] <Notice>: Received callback for registration dmf.policy.monitor.app
1061 iOSLog
1062 2019-05-04 15:33:48:208 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:49 iPhone-de-Tienda SpringBoard(UserNotificationsServer)[55] <Notice>: Getting all section infos possible default data providers
1063 iOSLog
1064 iOSLog
1065 iOSLog
1066 iOSLog
1067 iOSLog
1068 2019-05-04 15:33:48:213 - [iOSLog] [IOS_SYSLOG_ROW] May 4 17:33:49 iPhone-de-Tienda SpringBoard(UserNotificationsServer)[55] <Notice>: Setting topics for environment production:
1069 2019-05-04 15:33:48:213 - [iOSLog] [IOS_SYSLOG_ROW] enabled: (
1070 2019-05-04 15:33:48:213 - [iOSLog] [IOS_SYSLOG_ROW] )
1071 2019-05-04 15:33:48:213 - [iOSLog] [IOS_SYSLOG_ROW] ignored: (
1072 2019-05-04 15:33:48:213 - [iOSLog] [IOS_SYSLOG_ROW] )
1073 2019-05-04 15:33:48:214 - [iOSLog] [IOS_SYSLOG_ROW] opportunistic:(
1074 2019-05-04 15:33:48:214 - [iOSLog] [IOS_SYSLOG_ROW] "com.apple.Maps",
1075 2019-05-04 15:33:48:214 - [iOSLog] [IOS_SYSLOG_ROW] "com.apple.icloud-container.com.apple.Maps"
1076 2019-05-04 15:33:48:214 - [iOSLog] [IOS_SYSLOG_ROW] )
1077 iOSLog
1078 iOSLog