-
Notifications
You must be signed in to change notification settings - Fork 0
/
logcat.txt
7010 lines (7010 loc) · 1.21 MB
/
logcat.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
--------- beginning of main
06-16 16:22:18.512 730 27444 D : updateNewAdValue received dataLux: 196
06-16 16:22:18.512 730 27444 D : updateNewAdValue getSLSLevel: 0
06-16 16:22:18.512 730 27444 D : updateNewAdValue levelDiff: 0
06-16 16:22:18.621 730 27444 D : updateNewAdValue received dataLux: 196
06-16 16:22:18.621 730 27444 D : updateNewAdValue getSLSLevel: 0
06-16 16:22:18.621 730 27444 D : updateNewAdValue levelDiff: 0
06-16 16:22:18.681 730 2067 D : readbrightness,out:1101.
06-16 16:22:18.731 730 27444 D : updateNewAdValue received dataLux: 196
06-16 16:22:18.731 730 27444 D : updateNewAdValue getSLSLevel: 0
06-16 16:22:18.731 730 27444 D : updateNewAdValue levelDiff: 0
06-16 16:22:18.842 730 27444 D : updateNewAdValue received dataLux: 196
06-16 16:22:18.842 730 27444 D : updateNewAdValue getSLSLevel: 0
06-16 16:22:18.842 730 27444 D : updateNewAdValue levelDiff: 0
06-16 16:22:18.951 730 27444 D : updateNewAdValue received dataLux: 196
06-16 16:22:18.951 730 27444 D : updateNewAdValue getSLSLevel: 0
06-16 16:22:18.951 730 27444 D : updateNewAdValue levelDiff: 0
06-16 16:22:19.011 29085 29125 I GoLog : udp:127.0.0.1:38424 accepted udp:114.114.114.114:53 [socks >> proxy]
06-16 16:22:19.061 730 27444 D : updateNewAdValue received dataLux: 196
06-16 16:22:19.061 730 27444 D : updateNewAdValue getSLSLevel: 0
06-16 16:22:19.061 730 27444 D : updateNewAdValue levelDiff: 0
06-16 16:22:19.068 18696 18764 I AudioManager: In isBluetoothScoOn(), calling application: com.huaqin.sarcontroller
06-16 16:22:19.069 1549 4982 I AS.AudioDeviceBroker: In isBluetoothScoOnForApp(), mForcedUseForCommExt: 1
06-16 16:22:19.069 18696 18764 I AudioManager: In isSpeakerphoneOn(), calling application: com.huaqin.sarcontroller
06-16 16:22:19.069 1549 4982 I AS.AudioDeviceBroker: In isSpeakerphoneOn(), mForcedUseForCommExt: 1
06-16 16:22:19.130 29085 29410 I GoLog : Using Prepared: 43.201.36.61
06-16 16:22:19.173 730 27444 D : updateNewAdValue received dataLux: 196
06-16 16:22:19.173 730 27444 D : updateNewAdValue getSLSLevel: 0
06-16 16:22:19.173 730 27444 D : updateNewAdValue levelDiff: 0
06-16 16:22:19.292 730 27444 D : updateNewAdValue received dataLux: 196
06-16 16:22:19.292 730 27444 D : updateNewAdValue getSLSLevel: 0
06-16 16:22:19.292 730 27444 D : updateNewAdValue levelDiff: 0
06-16 16:22:19.372 1549 2005 I MiuiNetworkPolicy: bandwidth: 0 KB/s, Max bandwidth: 6691 KB/s
06-16 16:22:19.402 730 27444 D : updateNewAdValue received dataLux: 196
06-16 16:22:19.402 730 27444 D : updateNewAdValue getSLSLevel: 0
06-16 16:22:19.402 730 27444 D : updateNewAdValue levelDiff: 0
06-16 16:22:19.513 730 27444 D : updateNewAdValue received dataLux: 196
06-16 16:22:19.513 730 27444 D : updateNewAdValue getSLSLevel: 0
06-16 16:22:19.513 730 27444 D : updateNewAdValue levelDiff: 0
06-16 16:22:19.621 1549 1973 W SensorService: Dropping 1 cached events (10000/10000) to save 1/1 new events. 18 events previously dropped
06-16 16:22:19.622 730 27444 D : updateNewAdValue received dataLux: 196
06-16 16:22:19.622 730 27444 D : updateNewAdValue getSLSLevel: 0
06-16 16:22:19.622 730 27444 D : updateNewAdValue levelDiff: 0
06-16 16:22:19.682 730 2067 D : readbrightness,out:1101.
06-16 16:22:19.707 29085 29409 I GoLog : udp:127.0.0.1:38742 accepted udp:1.1.1.1:53 [socks -> proxy]
06-16 16:22:19.731 730 27444 D : updateNewAdValue received dataLux: 196
06-16 16:22:19.731 730 27444 D : updateNewAdValue getSLSLevel: 0
06-16 16:22:19.731 730 27444 D : updateNewAdValue levelDiff: 0
06-16 16:22:19.843 730 27444 D : updateNewAdValue received dataLux: 196
06-16 16:22:19.843 730 27444 D : updateNewAdValue getSLSLevel: 0
06-16 16:22:19.843 730 27444 D : updateNewAdValue levelDiff: 0
06-16 16:22:19.843 29085 29410 I GoLog : Using Prepared: 43.201.36.61
06-16 16:22:19.953 730 27444 D : updateNewAdValue received dataLux: 196
06-16 16:22:19.953 730 27444 D : updateNewAdValue getSLSLevel: 0
06-16 16:22:19.953 730 27444 D : updateNewAdValue levelDiff: 0
06-16 16:22:20.062 730 27444 D : updateNewAdValue received dataLux: 196
06-16 16:22:20.062 730 27444 D : updateNewAdValue getSLSLevel: 0
06-16 16:22:20.062 730 27444 D : updateNewAdValue levelDiff: 0
06-16 16:22:20.110 18696 18764 I AudioManager: In isBluetoothScoOn(), calling application: com.huaqin.sarcontroller
06-16 16:22:20.112 1549 2305 I AS.AudioDeviceBroker: In isBluetoothScoOnForApp(), mForcedUseForCommExt: 1
06-16 16:22:20.112 18696 18764 I AudioManager: In isSpeakerphoneOn(), calling application: com.huaqin.sarcontroller
06-16 16:22:20.112 1549 2305 I AS.AudioDeviceBroker: In isSpeakerphoneOn(), mForcedUseForCommExt: 1
06-16 16:22:20.174 730 27444 D : updateNewAdValue received dataLux: 196
06-16 16:22:20.174 730 27444 D : updateNewAdValue getSLSLevel: 0
06-16 16:22:20.174 730 27444 D : updateNewAdValue levelDiff: 0
06-16 16:22:20.292 730 27444 D : updateNewAdValue received dataLux: 196
06-16 16:22:20.293 730 27444 D : updateNewAdValue getSLSLevel: 0
06-16 16:22:20.293 730 27444 D : updateNewAdValue levelDiff: 0
06-16 16:22:20.402 730 27444 D : updateNewAdValue received dataLux: 196
06-16 16:22:20.403 730 27444 D : updateNewAdValue getSLSLevel: 0
06-16 16:22:20.403 730 27444 D : updateNewAdValue levelDiff: 0
06-16 16:22:20.407 2417 2417 D ScreenView_MinusOneScreenView: dispatchDraw:1080
06-16 16:22:20.512 730 27444 D : updateNewAdValue received dataLux: 196
06-16 16:22:20.512 730 27444 D : updateNewAdValue getSLSLevel: 0
06-16 16:22:20.513 730 27444 D : updateNewAdValue levelDiff: 0
06-16 16:22:20.622 730 27444 D : updateNewAdValue received dataLux: 196
06-16 16:22:20.622 730 27444 D : updateNewAdValue getSLSLevel: 0
06-16 16:22:20.622 730 27444 D : updateNewAdValue levelDiff: 0
06-16 16:22:20.683 730 2067 D : readbrightness,out:1101.
06-16 16:22:20.732 730 27444 D : updateNewAdValue received dataLux: 196
06-16 16:22:20.732 730 27444 D : updateNewAdValue getSLSLevel: 0
06-16 16:22:20.732 730 27444 D : updateNewAdValue levelDiff: 0
06-16 16:22:20.842 730 27444 D : updateNewAdValue received dataLux: 196
06-16 16:22:20.842 730 27444 D : updateNewAdValue getSLSLevel: 0
06-16 16:22:20.842 730 27444 D : updateNewAdValue levelDiff: 0
06-16 16:22:20.953 730 27444 D : updateNewAdValue received dataLux: 196
06-16 16:22:20.953 730 27444 D : updateNewAdValue getSLSLevel: 0
06-16 16:22:20.953 730 27444 D : updateNewAdValue levelDiff: 0
06-16 16:22:21.063 730 27444 D : updateNewAdValue received dataLux: 196
06-16 16:22:21.063 730 27444 D : updateNewAdValue getSLSLevel: 0
06-16 16:22:21.063 730 27444 D : updateNewAdValue levelDiff: 0
06-16 16:22:21.144 18696 18764 I AudioManager: In isBluetoothScoOn(), calling application: com.huaqin.sarcontroller
06-16 16:22:21.145 1549 3175 I AS.AudioDeviceBroker: In isBluetoothScoOnForApp(), mForcedUseForCommExt: 1
06-16 16:22:21.145 18696 18764 I AudioManager: In isSpeakerphoneOn(), calling application: com.huaqin.sarcontroller
06-16 16:22:21.145 1549 3175 I AS.AudioDeviceBroker: In isSpeakerphoneOn(), mForcedUseForCommExt: 1
06-16 16:22:21.174 730 27444 D : updateNewAdValue received dataLux: 196
06-16 16:22:21.174 730 27444 D : updateNewAdValue getSLSLevel: 0
06-16 16:22:21.174 730 27444 D : updateNewAdValue levelDiff: 0
06-16 16:22:21.293 730 27444 D : updateNewAdValue received dataLux: 196
06-16 16:22:21.293 730 27444 D : updateNewAdValue getSLSLevel: 0
06-16 16:22:21.293 730 27444 D : updateNewAdValue levelDiff: 0
06-16 16:22:21.402 730 27444 D : updateNewAdValue received dataLux: 196
06-16 16:22:21.402 730 27444 D : updateNewAdValue getSLSLevel: 0
06-16 16:22:21.402 730 27444 D : updateNewAdValue levelDiff: 0
06-16 16:22:21.512 730 27444 D : updateNewAdValue received dataLux: 196
06-16 16:22:21.512 730 27444 D : updateNewAdValue getSLSLevel: 0
06-16 16:22:21.512 730 27444 D : updateNewAdValue levelDiff: 0
06-16 16:22:21.622 730 27444 D : updateNewAdValue received dataLux: 196
06-16 16:22:21.622 730 27444 D : updateNewAdValue getSLSLevel: 0
06-16 16:22:21.622 730 27444 D : updateNewAdValue levelDiff: 0
06-16 16:22:21.684 730 2067 D : readbrightness,out:1101.
06-16 16:22:21.730 1549 1973 W SensorService: Dropping 1 cached events (10000/10000) to save 1/1 new events. 18 events previously dropped
06-16 16:22:21.731 730 27444 D : updateNewAdValue received dataLux: 196
06-16 16:22:21.731 730 27444 D : updateNewAdValue getSLSLevel: 0
06-16 16:22:21.731 730 27444 D : updateNewAdValue levelDiff: 0
06-16 16:22:21.842 730 27444 D : updateNewAdValue received dataLux: 196
06-16 16:22:21.842 730 27444 D : updateNewAdValue getSLSLevel: 0
06-16 16:22:21.842 730 27444 D : updateNewAdValue levelDiff: 0
06-16 16:22:21.952 730 27444 D : updateNewAdValue received dataLux: 196
06-16 16:22:21.952 730 27444 D : updateNewAdValue getSLSLevel: 0
06-16 16:22:21.952 730 27444 D : updateNewAdValue levelDiff: 0
06-16 16:22:22.063 730 27444 D : updateNewAdValue received dataLux: 197
06-16 16:22:22.063 730 27444 D : updateNewAdValue getSLSLevel: 0
06-16 16:22:22.063 730 27444 D : updateNewAdValue levelDiff: 0
06-16 16:22:22.175 730 27444 D : updateNewAdValue received dataLux: 197
06-16 16:22:22.175 730 27444 D : updateNewAdValue getSLSLevel: 0
06-16 16:22:22.175 730 27444 D : updateNewAdValue levelDiff: 0
06-16 16:22:22.186 18696 18764 I AudioManager: In isBluetoothScoOn(), calling application: com.huaqin.sarcontroller
06-16 16:22:22.187 1549 3175 I AS.AudioDeviceBroker: In isBluetoothScoOnForApp(), mForcedUseForCommExt: 1
06-16 16:22:22.188 18696 18764 I AudioManager: In isSpeakerphoneOn(), calling application: com.huaqin.sarcontroller
06-16 16:22:22.189 1549 3175 I AS.AudioDeviceBroker: In isSpeakerphoneOn(), mForcedUseForCommExt: 1
06-16 16:22:22.294 730 27444 D : updateNewAdValue received dataLux: 196
06-16 16:22:22.294 730 27444 D : updateNewAdValue getSLSLevel: 0
06-16 16:22:22.294 730 27444 D : updateNewAdValue levelDiff: 0
06-16 16:22:22.375 1549 2005 I MiuiNetworkPolicy: bandwidth: 0 KB/s, Max bandwidth: 6691 KB/s
06-16 16:22:22.403 730 27444 D : updateNewAdValue received dataLux: 197
06-16 16:22:22.403 730 27444 D : updateNewAdValue getSLSLevel: 0
06-16 16:22:22.403 730 27444 D : updateNewAdValue levelDiff: 0
06-16 16:22:22.512 730 27444 D : updateNewAdValue received dataLux: 196
06-16 16:22:22.513 730 27444 D : updateNewAdValue getSLSLevel: 0
06-16 16:22:22.513 730 27444 D : updateNewAdValue levelDiff: 0
06-16 16:22:22.623 730 27444 D : updateNewAdValue received dataLux: 197
06-16 16:22:22.623 730 27444 D : updateNewAdValue getSLSLevel: 0
06-16 16:22:22.623 730 27444 D : updateNewAdValue levelDiff: 0
06-16 16:22:22.685 730 2067 D : readbrightness,out:1101.
06-16 16:22:22.733 730 27444 D : updateNewAdValue received dataLux: 197
06-16 16:22:22.733 730 27444 D : updateNewAdValue getSLSLevel: 0
06-16 16:22:22.733 730 27444 D : updateNewAdValue levelDiff: 0
06-16 16:22:22.842 730 27444 D : updateNewAdValue received dataLux: 196
06-16 16:22:22.843 730 27444 D : updateNewAdValue getSLSLevel: 0
06-16 16:22:22.843 730 27444 D : updateNewAdValue levelDiff: 0
06-16 16:22:22.953 730 27444 D : updateNewAdValue received dataLux: 197
06-16 16:22:22.953 730 27444 D : updateNewAdValue getSLSLevel: 0
06-16 16:22:22.953 730 27444 D : updateNewAdValue levelDiff: 0
06-16 16:22:23.015 29085 29410 I GoLog : udp:127.0.0.1:45722 accepted udp:114.114.114.114:53 [socks >> proxy]
06-16 16:22:23.020 29085 29125 I GoLog : udp:127.0.0.1:41420 accepted udp:114.114.114.114:53 [socks >> proxy]
06-16 16:22:23.063 730 27444 D : updateNewAdValue received dataLux: 197
06-16 16:22:23.063 730 27444 D : updateNewAdValue getSLSLevel: 0
06-16 16:22:23.063 730 27444 D : updateNewAdValue levelDiff: 0
06-16 16:22:23.173 730 27444 D : updateNewAdValue received dataLux: 197
06-16 16:22:23.173 730 27444 D : updateNewAdValue getSLSLevel: 0
06-16 16:22:23.173 730 27444 D : updateNewAdValue levelDiff: 0
06-16 16:22:23.227 18696 18764 I AudioManager: In isBluetoothScoOn(), calling application: com.huaqin.sarcontroller
06-16 16:22:23.228 1549 2317 I AS.AudioDeviceBroker: In isBluetoothScoOnForApp(), mForcedUseForCommExt: 1
06-16 16:22:23.229 18696 18764 I AudioManager: In isSpeakerphoneOn(), calling application: com.huaqin.sarcontroller
06-16 16:22:23.229 1549 2317 I AS.AudioDeviceBroker: In isSpeakerphoneOn(), mForcedUseForCommExt: 1
06-16 16:22:23.292 730 27444 D : updateNewAdValue received dataLux: 197
06-16 16:22:23.292 730 27444 D : updateNewAdValue getSLSLevel: 0
06-16 16:22:23.292 730 27444 D : updateNewAdValue levelDiff: 0
06-16 16:22:23.330 29085 29121 I GoLog : Using Prepared: 43.201.36.61
06-16 16:22:23.330 29085 29410 I GoLog : Using Prepared: 43.201.36.61
06-16 16:22:23.402 730 27444 D : updateNewAdValue received dataLux: 197
06-16 16:22:23.402 730 27444 D : updateNewAdValue getSLSLevel: 0
06-16 16:22:23.402 730 27444 D : updateNewAdValue levelDiff: 0
06-16 16:22:23.513 730 27444 D : updateNewAdValue received dataLux: 197
06-16 16:22:23.513 730 27444 D : updateNewAdValue getSLSLevel: 0
06-16 16:22:23.513 730 27444 D : updateNewAdValue levelDiff: 0
06-16 16:22:23.623 730 27444 D : updateNewAdValue received dataLux: 197
06-16 16:22:23.623 730 27444 D : updateNewAdValue getSLSLevel: 0
06-16 16:22:23.623 730 27444 D : updateNewAdValue levelDiff: 0
06-16 16:22:23.686 730 2067 D : readbrightness,out:1101.
06-16 16:22:23.731 1549 1973 W SensorService: Dropping 1 cached events (10000/10000) to save 1/1 new events. 17 events previously dropped
06-16 16:22:23.732 730 27444 D : updateNewAdValue received dataLux: 196
06-16 16:22:23.733 730 27444 D : updateNewAdValue getSLSLevel: 0
06-16 16:22:23.733 730 27444 D : updateNewAdValue levelDiff: 0
06-16 16:22:23.841 730 27444 D : updateNewAdValue received dataLux: 193
06-16 16:22:23.841 730 27444 D : updateNewAdValue getSLSLevel: 0
06-16 16:22:23.841 730 27444 D : updateNewAdValue levelDiff: 0
06-16 16:22:23.953 730 27444 D : updateNewAdValue received dataLux: 196
06-16 16:22:23.953 730 27444 D : updateNewAdValue getSLSLevel: 0
06-16 16:22:23.953 730 27444 D : updateNewAdValue levelDiff: 0
06-16 16:22:23.961 4896 5136 I AppOpsAdapter: start apply permission record!
06-16 16:22:24.016 29085 29125 I GoLog : udp:127.0.0.1:39873 accepted udp:1.1.1.1:53 [socks -> proxy]
06-16 16:22:24.063 730 27444 D : updateNewAdValue received dataLux: 196
06-16 16:22:24.064 730 27444 D : updateNewAdValue getSLSLevel: 0
06-16 16:22:24.064 730 27444 D : updateNewAdValue levelDiff: 0
06-16 16:22:24.146 29085 29410 I GoLog : Using Prepared: 43.201.36.61
06-16 16:22:24.173 730 27444 D : updateNewAdValue received dataLux: 196
06-16 16:22:24.173 730 27444 D : updateNewAdValue getSLSLevel: 0
06-16 16:22:24.173 730 27444 D : updateNewAdValue levelDiff: 0
06-16 16:22:24.252 18696 18764 I AudioManager: In isBluetoothScoOn(), calling application: com.huaqin.sarcontroller
06-16 16:22:24.253 1549 2317 I AS.AudioDeviceBroker: In isBluetoothScoOnForApp(), mForcedUseForCommExt: 1
06-16 16:22:24.254 18696 18764 I AudioManager: In isSpeakerphoneOn(), calling application: com.huaqin.sarcontroller
06-16 16:22:24.255 1549 2317 I AS.AudioDeviceBroker: In isSpeakerphoneOn(), mForcedUseForCommExt: 1
06-16 16:22:24.291 730 27444 D : updateNewAdValue received dataLux: 196
06-16 16:22:24.291 730 27444 D : updateNewAdValue getSLSLevel: 0
06-16 16:22:24.291 730 27444 D : updateNewAdValue levelDiff: 0
06-16 16:22:24.399 730 27444 D : updateNewAdValue received dataLux: 196
06-16 16:22:24.399 730 27444 D : updateNewAdValue getSLSLevel: 0
06-16 16:22:24.399 730 27444 D : updateNewAdValue levelDiff: 0
06-16 16:22:24.515 730 27444 D : updateNewAdValue received dataLux: 196
06-16 16:22:24.515 730 27444 D : updateNewAdValue getSLSLevel: 0
06-16 16:22:24.515 730 27444 D : updateNewAdValue levelDiff: 0
06-16 16:22:24.623 730 27444 D : updateNewAdValue received dataLux: 196
06-16 16:22:24.623 730 27444 D : updateNewAdValue getSLSLevel: 0
06-16 16:22:24.623 730 27444 D : updateNewAdValue levelDiff: 0
06-16 16:22:24.687 730 2067 D : readbrightness,out:1101.
06-16 16:22:24.713 29085 29125 I GoLog : udp:127.0.0.1:38323 accepted udp:114.114.114.114:53 [socks >> proxy]
06-16 16:22:24.732 730 27444 D : updateNewAdValue received dataLux: 196
06-16 16:22:24.733 730 27444 D : updateNewAdValue getSLSLevel: 0
06-16 16:22:24.733 730 27444 D : updateNewAdValue levelDiff: 0
06-16 16:22:24.842 730 27444 D : updateNewAdValue received dataLux: 196
06-16 16:22:24.842 730 27444 D : updateNewAdValue getSLSLevel: 0
06-16 16:22:24.842 730 27444 D : updateNewAdValue levelDiff: 0
06-16 16:22:24.861 29085 29160 I GoLog : Using Prepared: 43.201.36.61
06-16 16:22:24.952 730 27444 D : updateNewAdValue received dataLux: 196
06-16 16:22:24.952 730 27444 D : updateNewAdValue getSLSLevel: 0
06-16 16:22:24.952 730 27444 D : updateNewAdValue levelDiff: 0
06-16 16:22:25.063 730 27444 D : updateNewAdValue received dataLux: 196
06-16 16:22:25.063 730 27444 D : updateNewAdValue getSLSLevel: 0
06-16 16:22:25.063 730 27444 D : updateNewAdValue levelDiff: 0
06-16 16:22:25.172 730 27444 D : updateNewAdValue received dataLux: 196
06-16 16:22:25.172 730 27444 D : updateNewAdValue getSLSLevel: 0
06-16 16:22:25.172 730 27444 D : updateNewAdValue levelDiff: 0
06-16 16:22:25.293 730 27444 D : updateNewAdValue received dataLux: 196
06-16 16:22:25.293 730 27444 D : updateNewAdValue getSLSLevel: 0
06-16 16:22:25.293 730 27444 D : updateNewAdValue levelDiff: 0
06-16 16:22:25.296 18696 18764 I AudioManager: In isBluetoothScoOn(), calling application: com.huaqin.sarcontroller
06-16 16:22:25.296 1549 2317 I AS.AudioDeviceBroker: In isBluetoothScoOnForApp(), mForcedUseForCommExt: 1
06-16 16:22:25.297 18696 18764 I AudioManager: In isSpeakerphoneOn(), calling application: com.huaqin.sarcontroller
06-16 16:22:25.297 1549 2317 I AS.AudioDeviceBroker: In isSpeakerphoneOn(), mForcedUseForCommExt: 1
06-16 16:22:25.380 1549 2005 I MiuiNetworkPolicy: bandwidth: 0 KB/s, Max bandwidth: 6691 KB/s
06-16 16:22:25.403 730 27444 D : updateNewAdValue received dataLux: 196
06-16 16:22:25.403 730 27444 D : updateNewAdValue getSLSLevel: 0
06-16 16:22:25.403 730 27444 D : updateNewAdValue levelDiff: 0
06-16 16:22:25.406 2417 2417 D ScreenView_MinusOneScreenView: dispatchDraw:1080
06-16 16:22:25.512 730 27444 D : updateNewAdValue received dataLux: 196
06-16 16:22:25.512 730 27444 D : updateNewAdValue getSLSLevel: 0
06-16 16:22:25.512 730 27444 D : updateNewAdValue levelDiff: 0
06-16 16:22:25.623 730 27444 D : updateNewAdValue received dataLux: 196
06-16 16:22:25.623 730 27444 D : updateNewAdValue getSLSLevel: 0
06-16 16:22:25.623 730 27444 D : updateNewAdValue levelDiff: 0
06-16 16:22:25.689 730 2067 D : readbrightness,out:1101.
06-16 16:22:25.733 730 27444 D : updateNewAdValue received dataLux: 196
06-16 16:22:25.733 730 27444 D : updateNewAdValue getSLSLevel: 0
06-16 16:22:25.733 730 27444 D : updateNewAdValue levelDiff: 0
06-16 16:22:25.841 1549 1973 W SensorService: Dropping 1 cached events (10000/10000) to save 1/1 new events. 18 events previously dropped
06-16 16:22:25.842 730 27444 D : updateNewAdValue received dataLux: 196
06-16 16:22:25.842 730 27444 D : updateNewAdValue getSLSLevel: 0
06-16 16:22:25.842 730 27444 D : updateNewAdValue levelDiff: 0
06-16 16:22:25.953 730 27444 D : updateNewAdValue received dataLux: 196
06-16 16:22:25.953 730 27444 D : updateNewAdValue getSLSLevel: 0
06-16 16:22:25.953 730 27444 D : updateNewAdValue levelDiff: 0
06-16 16:22:26.063 730 27444 D : updateNewAdValue received dataLux: 196
06-16 16:22:26.063 730 27444 D : updateNewAdValue getSLSLevel: 0
06-16 16:22:26.063 730 27444 D : updateNewAdValue levelDiff: 0
06-16 16:22:26.174 730 27444 D : updateNewAdValue received dataLux: 196
06-16 16:22:26.174 730 27444 D : updateNewAdValue getSLSLevel: 0
06-16 16:22:26.174 730 27444 D : updateNewAdValue levelDiff: 0
06-16 16:22:26.291 730 27444 D : updateNewAdValue received dataLux: 196
06-16 16:22:26.292 730 27444 D : updateNewAdValue getSLSLevel: 0
06-16 16:22:26.292 730 27444 D : updateNewAdValue levelDiff: 0
06-16 16:22:26.316 18696 18764 I AudioManager: In isBluetoothScoOn(), calling application: com.huaqin.sarcontroller
06-16 16:22:26.317 1549 2305 I AS.AudioDeviceBroker: In isBluetoothScoOnForApp(), mForcedUseForCommExt: 1
06-16 16:22:26.318 18696 18764 I AudioManager: In isSpeakerphoneOn(), calling application: com.huaqin.sarcontroller
06-16 16:22:26.319 1549 2305 I AS.AudioDeviceBroker: In isSpeakerphoneOn(), mForcedUseForCommExt: 1
06-16 16:22:26.403 730 27444 D : updateNewAdValue received dataLux: 196
06-16 16:22:26.403 730 27444 D : updateNewAdValue getSLSLevel: 0
06-16 16:22:26.403 730 27444 D : updateNewAdValue levelDiff: 0
06-16 16:22:26.512 730 27444 D : updateNewAdValue received dataLux: 195
06-16 16:22:26.512 730 27444 D : updateNewAdValue getSLSLevel: 0
06-16 16:22:26.512 730 27444 D : updateNewAdValue levelDiff: 0
06-16 16:22:26.623 730 27444 D : updateNewAdValue received dataLux: 192
06-16 16:22:26.623 730 27444 D : updateNewAdValue getSLSLevel: 0
06-16 16:22:26.623 730 27444 D : updateNewAdValue levelDiff: 0
06-16 16:22:26.690 730 2067 D : readbrightness,out:1101.
06-16 16:22:26.732 730 27444 D : updateNewAdValue received dataLux: 191
06-16 16:22:26.732 730 27444 D : updateNewAdValue getSLSLevel: 0
06-16 16:22:26.732 730 27444 D : updateNewAdValue levelDiff: 0
06-16 16:22:26.842 730 27444 D : updateNewAdValue received dataLux: 191
06-16 16:22:26.842 730 27444 D : updateNewAdValue getSLSLevel: 0
06-16 16:22:26.842 730 27444 D : updateNewAdValue levelDiff: 0
06-16 16:22:26.953 730 27444 D : updateNewAdValue received dataLux: 192
06-16 16:22:26.953 730 27444 D : updateNewAdValue getSLSLevel: 0
06-16 16:22:26.953 730 27444 D : updateNewAdValue levelDiff: 0
06-16 16:22:27.062 730 27444 D : updateNewAdValue received dataLux: 192
06-16 16:22:27.062 730 27444 D : updateNewAdValue getSLSLevel: 0
06-16 16:22:27.062 730 27444 D : updateNewAdValue levelDiff: 0
06-16 16:22:27.174 730 27444 D : updateNewAdValue received dataLux: 192
06-16 16:22:27.174 730 27444 D : updateNewAdValue getSLSLevel: 0
06-16 16:22:27.174 730 27444 D : updateNewAdValue levelDiff: 0
06-16 16:22:27.293 730 27444 D : updateNewAdValue received dataLux: 191
06-16 16:22:27.293 730 27444 D : updateNewAdValue getSLSLevel: 0
06-16 16:22:27.293 730 27444 D : updateNewAdValue levelDiff: 0
06-16 16:22:27.328 18696 18764 I AudioManager: In isBluetoothScoOn(), calling application: com.huaqin.sarcontroller
06-16 16:22:27.328 1549 2305 I AS.AudioDeviceBroker: In isBluetoothScoOnForApp(), mForcedUseForCommExt: 1
06-16 16:22:27.329 18696 18764 I AudioManager: In isSpeakerphoneOn(), calling application: com.huaqin.sarcontroller
06-16 16:22:27.329 1549 2305 I AS.AudioDeviceBroker: In isSpeakerphoneOn(), mForcedUseForCommExt: 1
06-16 16:22:27.402 730 27444 D : updateNewAdValue received dataLux: 191
06-16 16:22:27.402 730 27444 D : updateNewAdValue getSLSLevel: 0
06-16 16:22:27.402 730 27444 D : updateNewAdValue levelDiff: 0
06-16 16:22:27.417 28689 28802 I OpenGLRenderer: Davey! duration=3148ms; Flags=2, IntendedVsync=85653034821801, Vsync=85653034821801, OldestInputEvent=0, NewestInputEvent=0, HandleInputStart=85653034821801, AnimationStart=85653034821801, PerformTraversalsStart=85653034821801, DrawStart=85653034821801, SyncQueued=85653039230449, SyncStart=85653039231960, IssueDrawCommandsStart=85656180547479, SwapBuffers=85656182114771, FrameCompleted=85656183070448, DequeueBufferDuration=473000, QueueBufferDuration=416000,
06-16 16:22:27.429 29085 29085 D com.v2ray.ang.dev: tun2socks destroy
--------- beginning of system
06-16 16:22:27.430 1549 2012 D ConnectivityService: releasing NetworkRequest [ REQUEST id=169, [ Capabilities: INTERNET&NOT_RESTRICTED&TRUSTED&NOT_VPN Uid: 10271] ] (release request)
06-16 16:22:27.430 30612 30612 I tun2socks: NOTICE(tun2socks): termination requested
06-16 16:22:27.430 30612 30612 I tun2socks: NOTICE(tun2socks): tearing down
06-16 16:22:27.430 30612 30612 I tun2socks: NOTICE(tun2socks): Free TCP connections
06-16 16:22:27.432 30612 30612 I tun2socks: NOTICE(tun2socks): exiting
06-16 16:22:27.434 1549 1724 D CompatibilityInfo: mCompatibilityFlags - 0
06-16 16:22:27.434 28689 28689 W Looper : PerfMonitor longMsg : seq=1620 plan=16:22:24.184 late=6ms wall=3238ms running=22ms runnable=1ms h=android.view.ViewRootImpl$ViewRootHandler c=android.view.View$PerformClick procState=2
06-16 16:22:27.434 1549 1724 D CompatibilityInfo: applicationDensity - 440
06-16 16:22:27.435 1549 1724 D CompatibilityInfo: applicationScale - 1.0
06-16 16:22:27.435 28689 28689 I Choreographer: Skipped 193 frames! The application may be doing too much work on its main thread.
06-16 16:22:27.435 29085 30613 D com.v2ray.ang.dev: libtun2socks.so exited
06-16 16:22:27.437 28689 28689 W Looper : PerfMonitor doFrame : time=3ms vsyncFrame=1850954 latency=3233ms procState=2 historyMsgCount=1 (msgIndex=1 wall=3238ms seq=1620 running=22ms runnable=1ms late=6ms h=android.view.ViewRootImpl$ViewRootHandler c=android.view.View$PerformClick)
06-16 16:22:27.444 1549 1696 I EthernetTracker: interfaceLinkStateChanged, iface: tun0, up: false
06-16 16:22:27.447 2085 2085 D StatusBar: onNotificationRemoved key=0|com.v2ray.ang.dev|1|null|10271 reason=8
06-16 16:22:27.451 629 1357 D NetlinkEvent: Unknown ifindex 39 in RTM_DELADDR
06-16 16:22:27.452 629 1357 I Netd : Destroyed 1 sockets on 26.26.26.1 in 0.4 ms
06-16 16:22:27.452 21298 21298 D IMReply:Notif: onNotificationPosted onNotificationRemoved sbn = 1
06-16 16:22:27.455 2085 2085 D StatusBar: removeNotification StatusBarNotification(pkg=com.v2ray.ang.dev user=UserHandle{0} id=1 tag=null key=0|com.v2ray.ang.dev|1|null|10271: Notification(channel=RAY_NG_M_CH_ID pri=-2 contentView=null vibrate=null sound=null defaults=0x0 flags=0x6a color=0x00000000 actions=1 vis=PRIVATE))
06-16 16:22:27.455 2085 2085 D StatusBar: pkgName=com.v2ray.ang.dev appUid=10271 sdk=33 imp=2 sysApp=F priApp=F hasShown=F float=F keyguard=F peek=F fullscreen=F
06-16 16:22:27.455 2085 2085 D StatusBar: showMiuiAction=F enableFloat=T enableKeyguard=T floatTime=5000 messageCount=1 persistent=F customHeight=F
06-16 16:22:27.455 2085 2085 D StatusBar: update app badge num: com.v2ray.ang.dev/,num=0,isAllowed=false,userId=0
06-16 16:22:27.455 28689 28689 I Toast : Show toast from OpPackageName:com.v2ray.ang.dev, PackageName:com.v2ray.ang.dev
06-16 16:22:27.458 5021 4394 D PowerKeeper.Vpn: removed vpn iface: tun0
06-16 16:22:27.459 1549 2064 D EthernetNetworkFactory: updateCapabilityFilter: []
06-16 16:22:27.447 1549 1549 W android.fg: type=1400 audit(0.0:6935): avc: denied { sys_module } for capability=16 scontext=u:r:system_server:s0 tcontext=u:r:system_server:s0 tclass=capability permissive=0
06-16 16:22:27.460 5021 5372 D PowerKeeper.Vpn: removed vpn: 10271
06-16 16:22:27.460 778 3311 I /vendor/bin/hw/[email protected]: unbindService is called for service : com.v2ray.ang.dev/com.v2ray.ang.service.V2RayVpnService and for client system
06-16 16:22:27.460 778 3311 I /vendor/bin/hw/[email protected]: size of service connections for service: com.v2ray.ang.dev/com.v2ray.ang.service.V2RayVpnServiceafter removal is 0
06-16 16:22:27.460 778 3311 I /vendor/bin/hw/[email protected]: size of client connections for client: systemafter removal is 15
06-16 16:22:27.460 778 3311 I /vendor/bin/hw/[email protected]: destroyService is called for service : com.v2ray.ang.dev/com.v2ray.ang.service.V2RayVpnService
06-16 16:22:27.462 1549 1696 D Vpn : setting state=DISCONNECTED, reason=agentDisconnect
06-16 16:22:27.462 1549 2012 D ConnectivityService: NetworkAgentInfo [VPN () - 107] EVENT_NETWORK_INFO_CHANGED, going from CONNECTED to DISCONNECTED
06-16 16:22:27.462 1549 2317 W ActivityManager: Sending non-protected broadcast android.intent.action.APPLICATION_MESSAGE_UPDATE from system 2085:com.android.systemui/1000 pkg com.android.systemui. Callers=
06-16 16:22:27.464 629 3162 I Netd : Destroyed 3 sockets for UidRanges{ 0-99999 } skip={1016 10271} in 0.9 ms
06-16 16:22:27.464 629 3162 I netd : networkRemoveUidRanges(107) <1.50ms>
06-16 16:22:27.464 5021 5372 I AppActiveChecker: uid:10271change to inactive
06-16 16:22:27.464 5021 5372 I ActiveStateController: Vpn disconnect, uid is 10271
06-16 16:22:27.465 2417 2417 I Launcher.ApplicationsMessage: onReceive false
06-16 16:22:27.465 2417 2417 I Launcher.ApplicationsMessage: update com.v2ray.ang.dev/ to null
06-16 16:22:27.465 5021 5501 I PowerKeeperConfigureManager: Vpn disconnect, uid is 10271
06-16 16:22:27.466 629 3162 I netd : firewallRemoveUidInterfaceRules([10252,10254,10256,10257,10258,10259,10263,10264,10268,1068,1073,9800,9801,9802,9810,10000,10001,10002,10003,10004,10005,10006,10007,10008,10009,10010,10011,10012,10013,10014,10015,10016,10017,10018,10019,10020,10021,10022,10023,10024,10025,10026,10027,10028,10029,10030,10031,10032,10033,10034,10035,10036,10037,10038,10039,10040,10041,10042,10043,10044,10045,10046,10047,10048,10049,10050,10051,10052,10053,10054,10055,10056,10057,10059,10061,10062,10063,10064,10065,10066,10067,10068,10069,10070,10071,10072,10073,10074,10075,10076,10077,10078,10081,10082,10083,10084,10085,10086,10087,10088,10089,10090,10091,10092,10093,10094,10095,10096,10097,10098,10099,10100,10101,10102,10103,10104,10105,10106,10107,10108,10110,10111,10112,10113,10114,10115,10116,10117,10118,10119,10120,10121,10122,10123,10125,10126,10127,10128,10129,10130,10131,10132,10133,10134,10135,10136,10137,10138,10139,10140,10141,10142,10143,10144,10145,10146,10147,10148,10149,10150,10151,10152,10153,10155,10156,10157,
06-16 16:22:27.467 1549 2012 D ConnectivityService: NetworkAgentInfo [VPN () - 107] got DISCONNECTED, was satisfying 11
06-16 16:22:27.467 1549 2012 D NtpTrustedTime: currentTimeMillis() cache hit
06-16 16:22:27.468 629 3162 I netd : trafficSwapActiveStatsMap() <0.50ms>
06-16 16:22:27.472 629 3162 I netd : tetherGetStats() <2.18ms>
06-16 16:22:27.480 1549 2012 D NtpTrustedTime: currentTimeMillis() cache hit
06-16 16:22:27.482 3845 5123 I TrafficManageService: mina mTrafficStatsReceiver onReceive
06-16 16:22:27.482 1549 1696 I GnssNetworkConnectivityHandler: Network connection lost. Available networks count: 1
06-16 16:22:27.482 2345 3119 D QCNEJ/DefaultNetworkInfoRelay: Default network lost: 107
06-16 16:22:27.484 1549 1696 I GnssNetworkConnectivityHandler: updateNetworkState, state=CLOSED, connected=false, network=107, capabilities=[ Transports: WIFI|VPN Capabilities: NOT_METERED&INTERNET&NOT_RESTRICTED&TRUSTED&VALIDATED&NOT_ROAMING&FOREGROUND&NOT_CONGESTED&NOT_SUSPENDED LinkUpBandwidth>=1048576Kbps LinkDnBandwidth>=1048576Kbps Uids: <{0-99999}> EstablishingAppUid: 10271], apn: null, availableNetworkCount: 1
06-16 16:22:27.486 2345 3119 D QCNEJ/NativeHalConnector: -> SND notifyDefaultNetworkChanged(17)
06-16 16:22:27.487 2345 3119 E QCNEJ/NativeHalConnector: Failed to parse input for notifyDefaultNetworkChanged: java.lang.IllegalArgumentException: Unknown RatType:17
06-16 16:22:27.488 1549 2317 D ConnectivityService: Returning BLOCKED NetworkInfo to uid=10229
06-16 16:22:27.492 1549 2012 D ConnectivityService: Sending DISCONNECTED broadcast for type 17 NetworkAgentInfo [VPN () - 107] isDefaultNetwork=false
06-16 16:22:27.497 1549 2005 I MiuiNetworkPolicyQosUtils: receive actionandroid.net.conn.CONNECTIVITY_CHANGE
06-16 16:22:27.499 3845 3845 D ConnectivityChangeReceiver: receive broadcast
06-16 16:22:27.499 3845 3845 W SmsEngineUpdateManager: fail : no connected
06-16 16:22:27.501 1549 2187 D NetworkTimeUpdateService: New default network 100; checking time.
06-16 16:22:27.501 1549 2187 D NetworkTimeUpdateService: mNitzTimeSetTime: -1, refTime: 85656267, mLastNtpFetchTime: 85276267
06-16 16:22:27.503 2345 3119 D QCNEJ/DefaultNetworkInfoRelay: Default network available: 100
06-16 16:22:27.503 1549 2012 D WifiAssistant: maybeClearNotification: 107
06-16 16:22:27.503 1549 2012 D WifiAssistant: maybeClearNotification: no eventId 107
06-16 16:22:27.506 4040 4040 W PushService: [Tid:2] onStart() with intent.Action = android.net.conn.CONNECTIVITY_CHANGE, chid = null, pkg = null|null
06-16 16:22:27.506 4040 4462 W PushService: [Tid:259] [Job] Handle intent action = android.net.conn.CONNECTIVITY_CHANGE
06-16 16:22:27.507 629 3162 D TcpSocketMonitor: resuming tcpinfo polling (interval=30000ms)
06-16 16:22:27.507 629 3162 I netd : networkDestroy(107) <3.50ms>
06-16 16:22:27.508 629 3162 I netd : destroyNetworkCache(107) <0.03ms>
06-16 16:22:27.512 730 27444 D : updateNewAdValue received dataLux: 191
06-16 16:22:27.512 730 27444 D : updateNewAdValue getSLSLevel: 0
06-16 16:22:27.512 730 27444 D : updateNewAdValue levelDiff: 0
06-16 16:22:27.513 4040 4462 W PushService: [Tid:259] network changed,[type: WIFI[], state: CONNECTED/CONNECTED
06-16 16:22:27.514 1549 2003 D NtpTrustedTime: currentTimeMillis() cache hit
06-16 16:22:27.515 3845 3845 D ConnectivityChangeReceiver: receive broadcast
06-16 16:22:27.515 3845 3845 W SmsEngineUpdateManager: fail : no connected
06-16 16:22:27.516 4896 4896 I WakePathManager: connectivity updated
06-16 16:22:27.517 2345 3119 D QCNEJ/NativeHalConnector: -> SND notifyDefaultNetworkChanged(1)
06-16 16:22:27.519 3845 3845 I NetdFirewall: virtual sim disabled : false
06-16 16:22:27.520 3845 3845 I NetdFirewall: network: WifiConnected, roaming:false
06-16 16:22:27.520 3845 3845 I xman_share: XmanHelper - isSupportXman锛?false
06-16 16:22:27.520 3845 3845 I xman_share: XmanHelper - CTA Restrict
06-16 16:22:27.520 3845 3845 W zman_share_sec: Restrict - CTA
06-16 16:22:27.521 3845 3845 I TrafficManageService: update mEffectiveSlotNum:1
06-16 16:22:27.523 3845 3845 I TrafficManageService: mina connectivity updated : WifiConnected
06-16 16:22:27.523 3845 3845 I TrafficManageService: reportSms
06-16 16:22:27.523 3845 3845 I TrafficManageService: reportSms
06-16 16:22:27.523 3845 3845 I TrafficManageService: startAutoCorrection
06-16 16:22:27.527 28689 28689 W m.v2ray.ang.de: Accessing hidden method Lsun/misc/Unsafe;->getObjectVolatile(Ljava/lang/Object;J)Ljava/lang/Object; (greylist, linking, allowed)
06-16 16:22:27.529 4040 4462 W PushService: [Tid:259] [Job] do reconnect..
06-16 16:22:27.530 629 3162 I netd : bandwidthSetGlobalAlert(131072) <0.19ms>
06-16 16:22:27.531 3845 3845 I TrafficManageService: checkTimeEffective锛宻tartTime锛?686931200000, endTime : 1686844800000
06-16 16:22:27.534 19463 19463 D CommStateMonitor: onReceive: android.net.conn.CONNECTIVITY_CHANGE
06-16 16:22:27.535 19274 19335 D AD-PLUGIN-AdReceiver: onReceive android.net.conn.CONNECTIVITY_CHANGE
06-16 16:22:27.537 21298 21360 D NetworkStateReceiver: network state changed: true sNetWorkState = WIFI
06-16 16:22:27.543 4040 4462 W PushService: [Tid:259] network connectivity ok.
06-16 16:22:27.544 4040 4462 W PushService: [Tid:259] update the connection status. disconnected -> connecting : ERROR_OK
06-16 16:22:27.546 25402 25402 D DynamicReceiver: CONNECTIVITY_ACTION network Changed! oldType=9 currentType=9
06-16 16:22:27.552 4040 4462 W PushService: [Tid:259] begin to connect to 123.125.102.213:443
06-16 16:22:27.566 21240 21727 D IdProviderImpl: getOAID
06-16 16:22:27.568 20338 20536 I Market-TaskManager: handleNetworkChanged: true
06-16 16:22:27.569 21240 21727 D IdProviderImpl: getVAID
06-16 16:22:27.573 21240 21727 D IdProviderImpl: getUDID
06-16 16:22:27.573 1549 2187 D NtpTrustedTime: currentTimeMillis() cache hit
06-16 16:22:27.574 1549 2187 D NetworkTimeUpdateService: Ignoring NTP update due to low skew
06-16 16:22:27.574 1549 2012 D ProxyTracker: sending Proxy Broadcast for [] 0 xl=
06-16 16:22:27.574 3845 3845 I TrafficManageService: checkTimeEffective锛宻tartTime锛?686931200000, endTime : 1686844800000
06-16 16:22:27.577 30315 31558 D mivideo : [, , 0]:[ onReceive ] getNetworkType= WIFI
06-16 16:22:27.581 4040 4451 W PushService: [Tid:261] get region from system, region = CN
06-16 16:22:27.582 1549 1724 D CompatibilityInfo: mCompatibilityFlags - 0
06-16 16:22:27.582 1549 1724 D CompatibilityInfo: applicationDensity - 440
06-16 16:22:27.582 1549 1724 D CompatibilityInfo: applicationScale - 1.0
06-16 16:22:27.582 21240 31555 D IdProviderImpl: getUDID
06-16 16:22:27.585 21240 31555 D IdProviderImpl: getOAID
06-16 16:22:27.586 25565 25565 E KcSdk : [KcState] com.tencent.android.qqdownloader-- notifyCheck msg: android.net.conn.CONNECTIVITY_CHANGE immediate: false
06-16 16:22:27.589 20338 31553 E Market-HttpDnsManager: [D][detectCurrentNetwork] - Network name:WIFI subType name:
06-16 16:22:27.590 21240 31555 D IdProviderImpl: getVAID
06-16 16:22:27.593 1549 2317 D CompatibilityInfo: mCompatibilityFlags - 0
06-16 16:22:27.593 1549 2317 D CompatibilityInfo: applicationDensity - 440
06-16 16:22:27.593 1549 2317 D CompatibilityInfo: applicationScale - 1.0
06-16 16:22:27.595 778 3311 I /vendor/bin/hw/[email protected]: startService() is called for servicecom.android.providers.downloads/.service.DownloadService
06-16 16:22:27.595 1549 2012 D VPN : NetworkAgent: NetworkAgent channel lost
06-16 16:22:27.597 3845 3845 I NetworkDiagnostics_CheckStateManager: networkChanged
06-16 16:22:27.598 4040 4462 W PushService: [Tid:259] tcp connected
06-16 16:22:27.599 4040 4462 W PushService: [Tid:259] [slim] open conn: andver=29 sdk=42 hash=a-13EA63213F9754DC20C9BEB34BF6F8FDB458616D tz=8:0 Model=M2010J19SC os=V12.0.3.0.QJQCNXM
06-16 16:22:27.599 4040 4462 W PushService: [Tid:259] connected to 123.125.102.213:443 in 47
06-16 16:22:27.600 3845 3845 I TrafficManageService: checkAutoCorrectionConfig
06-16 16:22:27.602 3845 3845 I MiuiVpnManageService: forceUpdateCloudData
06-16 16:22:27.613 25402 31560 I XLDownloadManager: NetworkChangeHandlerThread nettype=9 [XLDownloadManager.java:143 - com.xunlei.downloadlib.XLDownloadManager$NetworkChangeHandlerThread.run] []
06-16 16:22:27.614 25402 25402 E ActivityThread: Failed to find provider info for com.miui.whetstone
06-16 16:22:27.615 25402 25402 D PersistServiceUtil: call whetstone fail values=service_name=com.android.providers.downloads/.service.DownloadService is_persist=true
06-16 16:22:27.619 25402 31560 I XLDownloadManager: NetworkChangeHandlerThread bssid=02:00:00:00:00:00 [XLDownloadManager.java:147 - com.xunlei.downloadlib.XLDownloadManager$NetworkChangeHandlerThread.run] []
06-16 16:22:27.622 730 27444 D : updateNewAdValue received dataLux: 191
06-16 16:22:27.622 730 27444 D : updateNewAdValue getSLSLevel: 0
06-16 16:22:27.622 730 27444 D : updateNewAdValue levelDiff: 0
06-16 16:22:27.628 4040 31561 W PushService: [Tid:403] setChallenge hash = 140554fd
06-16 16:22:27.629 4040 31561 W PushService: [Tid:403] update the connection status. connecting -> connected : ERROR_OK
06-16 16:22:27.632 4040 4462 W PushService: [Tid:259] [Job] bind the client. 5
06-16 16:22:27.633 4040 4462 W PushService: [Tid:259] update the client 5 status. unbind->binding unknown ERROR_OK null null
06-16 16:22:27.633 4040 31561 W PushService: [Tid:403] [Slim] CONN: host = 0cb9
06-16 16:22:27.633 4040 4462 W PushService: [Tid:259] [Slim]: bind id=dGu0K-194
06-16 16:22:27.636 3440 3440 E TelephonyEventHandler: Received network connection action
06-16 16:22:27.636 3845 3845 I TrafficManageService: mExtraNetworkReceiver tag = miui.intent.action.NETWORK_CONNECTED
06-16 16:22:27.636 3845 3845 I NetworkDiagnostics_CheckStateManager: networkConnected
06-16 16:22:27.637 3440 3440 E TelephonyEventHandler: Received network connection action currentNwType=1
06-16 16:22:27.639 25402 25402 D DownloadManager: initVolumePaths mVolumePaths=[/storage/emulated/0]
06-16 16:22:27.641 25402 31560 W System.err: java.lang.NullPointerException: Attempt to invoke virtual method 'boolean java.lang.String.startsWith(java.lang.String)' on a null object reference
06-16 16:22:27.641 25402 31560 W System.err: at com.xunlei.downloadlib.XLUtil.getNetWorkCarrier(XLUtil.java:727)
06-16 16:22:27.641 25402 31560 W System.err: at com.xunlei.downloadlib.XLDownloadManager$NetworkChangeHandlerThread.run(XLDownloadManager.java:150)
06-16 16:22:27.641 25402 31560 W System.err: at java.lang.Thread.run(Thread.java:919)
06-16 16:22:27.641 25402 31560 I XLDownloadManager: NetworkChangeHandlerThread NetWorkCarrier=UNKNOWN [XLDownloadManager.java:151 - com.xunlei.downloadlib.XLDownloadManager$NetworkChangeHandlerThread.run] []
06-16 16:22:27.648 25402 25402 D DMS_profile_test: false
06-16 16:22:27.649 25402 25402 D DMS_DownloadService: (startGetXlTokenEx) ---> create get token subThread. token: tk10.BB41574C205FEA2A869C1054207BD0C151FF75E140746DE9F2535036976B6A6A5B8F51CEB1C2A83205374977CCC8BBBB
06-16 16:22:27.654 25402 25402 W Settings: Setting device_provisioned has moved from android.provider.Settings.Secure to android.provider.Settings.Global, returning global URI.
06-16 16:22:27.657 25402 25402 D DMS_DownloadService: onStartCommand --->startId=1 cmd=2
06-16 16:22:27.657 25402 31566 D DMS_DownloadService: updateLocked enter
06-16 16:22:27.661 629 31567 E ResolverController: No valid NAT64 prefix (100, <unspecified>/0)
06-16 16:22:27.666 4040 4462 W PushService: [Tid:259] SMACK: channel bind succeeded, chid=5
06-16 16:22:27.667 4040 4462 W PushService: [Tid:259] update the client 5 status. binding->binded OPEN ERROR_OK null null
06-16 16:22:27.667 4040 4462 W PushService: [Tid:259] [Job] notify job
06-16 16:22:27.668 25402 31566 D DMS_DownloadService: Download 1: activeDownload=false, activeScan=false nextActionMillis=9223372036854775807
06-16 16:22:27.670 25402 31566 D DMS_DownloadService: Download 11: activeDownload=false, activeScan=false nextActionMillis=9223372036854775807
06-16 16:22:27.673 25402 31566 D DMS_DownloadService: Download 13: activeDownload=false, activeScan=false nextActionMillis=9223372036854775807
06-16 16:22:27.676 25402 31566 D DMS_DownloadService: Download 14: activeDownload=false, activeScan=false nextActionMillis=9223372036854775807
06-16 16:22:27.678 25402 31566 D DMS_DownloadService: Download 15: activeDownload=false, activeScan=false nextActionMillis=9223372036854775807
06-16 16:22:27.681 25402 31566 D DMS_DownloadService: Download 16: activeDownload=false, activeScan=false nextActionMillis=9223372036854775807
06-16 16:22:27.683 25402 31566 D DMS_DownloadService: Download 17: activeDownload=false, activeScan=false nextActionMillis=9223372036854775807
06-16 16:22:27.685 25402 31566 D DMS_DownloadService: Download 18: activeDownload=false, activeScan=false nextActionMillis=9223372036854775807
06-16 16:22:27.688 25402 31566 D DMS_DownloadService: Download 21: activeDownload=false, activeScan=false nextActionMillis=9223372036854775807
06-16 16:22:27.691 25402 31566 D DMS_DownloadService: Download 22: activeDownload=false, activeScan=false nextActionMillis=9223372036854775807
06-16 16:22:27.691 730 2067 D : readbrightness,out:1101.
06-16 16:22:27.695 25402 31566 D DMS_DownloadService: Download 23: activeDownload=false, activeScan=false nextActionMillis=9223372036854775807
06-16 16:22:27.698 25402 31566 D DMS_DownloadService: Download 24: activeDownload=false, activeScan=false nextActionMillis=9223372036854775807
06-16 16:22:27.700 25402 31566 D DMS_DownloadService: Download 25: activeDownload=false, activeScan=false nextActionMillis=9223372036854775807
06-16 16:22:27.704 25402 31566 D DMS_DownloadService: Download 26: activeDownload=false, activeScan=false nextActionMillis=9223372036854775807
06-16 16:22:27.708 25402 31566 D DMS_DownloadService: Download 27: activeDownload=false, activeScan=false nextActionMillis=9223372036854775807
06-16 16:22:27.712 25402 31566 D DMS_DownloadService: Download 28: activeDownload=false, activeScan=false nextActionMillis=9223372036854775807
06-16 16:22:27.715 25402 31566 D DMS_DownloadService: Download 29: activeDownload=false, activeScan=false nextActionMillis=9223372036854775807
06-16 16:22:27.718 25402 31566 D DMS_DownloadService: Download 30: activeDownload=false, activeScan=false nextActionMillis=9223372036854775807
06-16 16:22:27.722 25402 31566 D DMS_DownloadService: Download 31: activeDownload=false, activeScan=false nextActionMillis=9223372036854775807
06-16 16:22:27.726 25402 31566 D DMS_DownloadService: Download 34: activeDownload=false, activeScan=false nextActionMillis=9223372036854775807
06-16 16:22:27.729 25402 31566 D DMS_DownloadService: Download 35: activeDownload=false, activeScan=false nextActionMillis=9223372036854775807
06-16 16:22:27.731 730 27444 D : updateNewAdValue received dataLux: 190
06-16 16:22:27.731 730 27444 D : updateNewAdValue getSLSLevel: 0
06-16 16:22:27.731 730 27444 D : updateNewAdValue levelDiff: 0
06-16 16:22:27.733 25402 31566 D DMS_DownloadService: Download 36: activeDownload=false, activeScan=false nextActionMillis=9223372036854775807
06-16 16:22:27.736 25402 31566 D DMS_DownloadService: Download 37: activeDownload=false, activeScan=false nextActionMillis=9223372036854775807
06-16 16:22:27.739 25402 31566 D DMS_DownloadService: Download 38: activeDownload=false, activeScan=false nextActionMillis=9223372036854775807
06-16 16:22:27.742 25402 31566 D DMS_DownloadService: Download 39: activeDownload=false, activeScan=false nextActionMillis=9223372036854775807
06-16 16:22:27.745 25402 31566 D DMS_DownloadService: Download 40: activeDownload=false, activeScan=false nextActionMillis=9223372036854775807
06-16 16:22:27.748 25402 31566 D DMS_DownloadService: Download 41: activeDownload=false, activeScan=false nextActionMillis=9223372036854775807
06-16 16:22:27.750 25402 31566 D DMS_DownloadService: Download 42: activeDownload=false, activeScan=false nextActionMillis=9223372036854775807
06-16 16:22:27.753 25402 31566 D DMS_DownloadService: Download 43: activeDownload=false, activeScan=false nextActionMillis=9223372036854775807
06-16 16:22:27.755 25402 31566 D DMS_DownloadService: Download 44: activeDownload=false, activeScan=false nextActionMillis=9223372036854775807
06-16 16:22:27.758 25402 31566 D DMS_DownloadService: Download 45: activeDownload=false, activeScan=false nextActionMillis=9223372036854775807
06-16 16:22:27.760 25402 31566 D DMS_DownloadService: Download 46: activeDownload=false, activeScan=false nextActionMillis=9223372036854775807
06-16 16:22:27.761 28689 29084 W m.v2ray.ang.de: Accessing hidden method Lsun/misc/Unsafe;->putOrderedLong(Ljava/lang/Object;JJ)V (greylist, linking, allowed)
06-16 16:22:27.762 28689 28689 W m.v2ray.ang.de: Accessing hidden method Lsun/misc/Unsafe;->putOrderedObject(Ljava/lang/Object;JLjava/lang/Object;)V (greylist, linking, allowed)
06-16 16:22:27.762 28689 28689 W m.v2ray.ang.de: Accessing hidden method Lsun/misc/Unsafe;->putOrderedLong(Ljava/lang/Object;JJ)V (greylist, linking, allowed)
06-16 16:22:27.762 25402 31566 D DMS_DownloadService: Download 47: activeDownload=false, activeScan=false nextActionMillis=9223372036854775807
06-16 16:22:27.765 25402 31566 D DMS_DownloadService: Download 48: activeDownload=false, activeScan=false nextActionMillis=9223372036854775807
06-16 16:22:27.767 25402 31566 D DMS_DownloadService: Download 49: activeDownload=false, activeScan=false nextActionMillis=9223372036854775807
06-16 16:22:27.770 25402 31566 D DMS_DownloadService: Download 50: activeDownload=false, activeScan=false nextActionMillis=9223372036854775807
06-16 16:22:27.774 25402 31566 D DMS_DownloadService: Download 51: activeDownload=false, activeScan=false nextActionMillis=9223372036854775807
06-16 16:22:27.775 1549 4982 D PerfShielderService: com.v2ray.ang.dev|com.v2ray.ang.dev/com.v2ray.ang.ui.MainActivity|3217|85656251918886|3148|4|4
06-16 16:22:27.776 3440 11562 W MiuiPerfServiceClient: interceptAndQueuing:28689|com.v2ray.ang.dev|3217|3148|unknown|null|com.v2ray.ang.dev/com.v2ray.ang.ui.MainActivity|85656251918886|Slow bitmap uploads|4
06-16 16:22:27.777 25402 31566 D DMS_DownloadService: Download 52: activeDownload=false, activeScan=false nextActionMillis=9223372036854775807
06-16 16:22:27.780 25402 31566 D DMS_DownloadService: Download 53: activeDownload=false, activeScan=false nextActionMillis=9223372036854775807
06-16 16:22:27.782 25402 31566 D DMS_DownloadService: Download 54: activeDownload=false, activeScan=false nextActionMillis=9223372036854775807
06-16 16:22:27.785 25402 31566 D DMS_DownloadService: Download 55: activeDownload=false, activeScan=false nextActionMillis=9223372036854775807
06-16 16:22:27.789 25402 31566 D DMS_DownloadService: Download 56: activeDownload=false, activeScan=false nextActionMillis=9223372036854775807
06-16 16:22:27.792 25402 31566 D DMS_DownloadService: Download 57: activeDownload=false, activeScan=false nextActionMillis=9223372036854775807
06-16 16:22:27.796 25402 31566 D DMS_DownloadService: Download 58: activeDownload=false, activeScan=false nextActionMillis=9223372036854775807
06-16 16:22:27.798 25402 31566 D DMS_DownloadService: Download 59: activeDownload=false, activeScan=false nextActionMillis=9223372036854775807
06-16 16:22:27.801 25402 31566 D DMS_DownloadService: Download 60: activeDownload=false, activeScan=false nextActionMillis=9223372036854775807
06-16 16:22:27.803 25402 31566 D DMS_DownloadService: Download 61: activeDownload=false, activeScan=false nextActionMillis=9223372036854775807
06-16 16:22:27.806 25402 31566 D DMS_DownloadService: Download 62: activeDownload=false, activeScan=false nextActionMillis=9223372036854775807
06-16 16:22:27.808 25402 31566 D DMS_DownloadService: Download 63: activeDownload=false, activeScan=false nextActionMillis=9223372036854775807
06-16 16:22:27.810 25402 31566 D DMS_DownloadService: Download 64: activeDownload=false, activeScan=false nextActionMillis=9223372036854775807
06-16 16:22:27.813 25402 31566 D DMS_DownloadService: Download 65: activeDownload=false, activeScan=false nextActionMillis=9223372036854775807
06-16 16:22:27.813 25402 31566 D DMS_DownloadService: cusor close before
06-16 16:22:27.814 25402 31566 D DMS_DownloadService: cusor close after
06-16 16:22:27.814 25402 31566 D DMS_DownloadService: updateLocked exit totalTime=156 isActive=false nextActionMillis=9223372036854775807
06-16 16:22:27.842 730 27444 D : updateNewAdValue received dataLux: 191
06-16 16:22:27.842 730 27444 D : updateNewAdValue getSLSLevel: 0
06-16 16:22:27.842 730 27444 D : updateNewAdValue levelDiff: 0
06-16 16:22:27.951 1549 1973 W SensorService: Dropping 1 cached events (10000/10000) to save 1/1 new events. 18 events previously dropped
06-16 16:22:27.951 730 27444 D : updateNewAdValue received dataLux: 191
06-16 16:22:27.951 730 27444 D : updateNewAdValue getSLSLevel: 0
06-16 16:22:27.951 730 27444 D : updateNewAdValue levelDiff: 0
06-16 16:22:28.061 730 27444 D : updateNewAdValue received dataLux: 190
06-16 16:22:28.061 730 27444 D : updateNewAdValue getSLSLevel: 0
06-16 16:22:28.061 730 27444 D : updateNewAdValue levelDiff: 0
06-16 16:22:28.173 730 27444 D : updateNewAdValue received dataLux: 191
06-16 16:22:28.173 730 27444 D : updateNewAdValue getSLSLevel: 0
06-16 16:22:28.173 730 27444 D : updateNewAdValue levelDiff: 0
06-16 16:22:28.292 730 27444 D : updateNewAdValue received dataLux: 191
06-16 16:22:28.292 730 27444 D : updateNewAdValue getSLSLevel: 0
06-16 16:22:28.292 730 27444 D : updateNewAdValue levelDiff: 0
06-16 16:22:28.361 18696 18764 I AudioManager: In isBluetoothScoOn(), calling application: com.huaqin.sarcontroller
06-16 16:22:28.363 1549 2263 I AS.AudioDeviceBroker: In isBluetoothScoOnForApp(), mForcedUseForCommExt: 1
06-16 16:22:28.363 18696 18764 I AudioManager: In isSpeakerphoneOn(), calling application: com.huaqin.sarcontroller
06-16 16:22:28.364 1549 2263 I AS.AudioDeviceBroker: In isSpeakerphoneOn(), mForcedUseForCommExt: 1
06-16 16:22:28.382 1549 2005 I MiuiNetworkPolicy: bandwidth: 0 KB/s, Max bandwidth: 6691 KB/s
06-16 16:22:28.402 730 27444 D : updateNewAdValue received dataLux: 191
06-16 16:22:28.402 730 27444 D : updateNewAdValue getSLSLevel: 0
06-16 16:22:28.402 730 27444 D : updateNewAdValue levelDiff: 0
06-16 16:22:28.511 730 27444 D : updateNewAdValue received dataLux: 191
06-16 16:22:28.511 730 27444 D : updateNewAdValue getSLSLevel: 0
06-16 16:22:28.511 730 27444 D : updateNewAdValue levelDiff: 0
06-16 16:22:28.563 629 31577 E ResolverController: No valid NAT64 prefix (100, <unspecified>/0)
06-16 16:22:28.623 730 27444 D : updateNewAdValue received dataLux: 191
06-16 16:22:28.623 730 27444 D : updateNewAdValue getSLSLevel: 0
06-16 16:22:28.623 730 27444 D : updateNewAdValue levelDiff: 0
06-16 16:22:28.692 730 2067 D : readbrightness,out:1101.
06-16 16:22:28.732 730 27444 D : updateNewAdValue received dataLux: 192
06-16 16:22:28.732 730 27444 D : updateNewAdValue getSLSLevel: 0
06-16 16:22:28.732 730 27444 D : updateNewAdValue levelDiff: 0
06-16 16:22:28.842 730 27444 D : updateNewAdValue received dataLux: 193
06-16 16:22:28.842 730 27444 D : updateNewAdValue getSLSLevel: 0
06-16 16:22:28.842 730 27444 D : updateNewAdValue levelDiff: 0
06-16 16:22:28.955 730 27444 D : updateNewAdValue received dataLux: 194
06-16 16:22:28.955 730 27444 D : updateNewAdValue getSLSLevel: 0
06-16 16:22:28.955 730 27444 D : updateNewAdValue levelDiff: 0
06-16 16:22:29.062 730 27444 D : updateNewAdValue received dataLux: 194
06-16 16:22:29.062 730 27444 D : updateNewAdValue getSLSLevel: 0
06-16 16:22:29.062 730 27444 D : updateNewAdValue levelDiff: 0
06-16 16:22:29.172 730 27444 D : updateNewAdValue received dataLux: 195
06-16 16:22:29.172 730 27444 D : updateNewAdValue getSLSLevel: 0
06-16 16:22:29.172 730 27444 D : updateNewAdValue levelDiff: 0
06-16 16:22:29.295 730 27444 D : updateNewAdValue received dataLux: 195
06-16 16:22:29.295 730 27444 D : updateNewAdValue getSLSLevel: 0
06-16 16:22:29.295 730 27444 D : updateNewAdValue levelDiff: 0
06-16 16:22:29.388 1549 1983 I AlarmManager: Triggering alarm #0android statsTag = *walarm*:*job.delay*
06-16 16:22:29.396 778 3311 I /vendor/bin/hw/[email protected]: bindService is called for service : android/com.android.server.content.SyncJobService and for client system
06-16 16:22:29.396 778 3311 I /vendor/bin/hw/[email protected]: total connections for service : android/com.android.server.content.SyncJobServiceare :1
06-16 16:22:29.396 778 3311 I /vendor/bin/hw/[email protected]: total connections for client : systemare :16
06-16 16:22:29.398 1549 2033 D CompatibilityInfo: mCompatibilityFlags - 0
06-16 16:22:29.398 1549 2033 D CompatibilityInfo: applicationDensity - 440
06-16 16:22:29.398 1549 2033 D CompatibilityInfo: applicationScale - 1.0
06-16 16:22:29.398 778 3311 I /vendor/bin/hw/[email protected]: startService() is called for serviceandroid/com.android.server.content.SyncJobService
06-16 16:22:29.401 730 27444 D : updateNewAdValue received dataLux: 195
06-16 16:22:29.401 730 27444 D : updateNewAdValue getSLSLevel: 0
06-16 16:22:29.401 730 27444 D : updateNewAdValue levelDiff: 0
06-16 16:22:29.404 18696 18764 I AudioManager: In isBluetoothScoOn(), calling application: com.huaqin.sarcontroller
06-16 16:22:29.405 778 3311 I /vendor/bin/hw/[email protected]: bindService is called for service : com.tencent.android.qqdownloader/com.live.sync.YYBLiveSyncService and for client system
06-16 16:22:29.405 778 3311 I /vendor/bin/hw/[email protected]: total connections for service : com.tencent.android.qqdownloader/com.live.sync.YYBLiveSyncServiceare :1
06-16 16:22:29.405 778 3311 I /vendor/bin/hw/[email protected]: total connections for client : systemare :17
06-16 16:22:29.405 1549 4982 I AS.AudioDeviceBroker: In isBluetoothScoOnForApp(), mForcedUseForCommExt: 1
06-16 16:22:29.405 18696 18764 I AudioManager: In isSpeakerphoneOn(), calling application: com.huaqin.sarcontroller
06-16 16:22:29.405 1549 4982 I AS.AudioDeviceBroker: In isSpeakerphoneOn(), mForcedUseForCommExt: 1
06-16 16:22:29.406 1549 2083 D CompatibilityInfo: mCompatibilityFlags - 0
06-16 16:22:29.406 1549 2083 D CompatibilityInfo: applicationDensity - 440
06-16 16:22:29.406 1549 2083 D CompatibilityInfo: applicationScale - 1.0
06-16 16:22:29.407 778 3311 I /vendor/bin/hw/[email protected]: startService() is called for servicecom.tencent.android.qqdownloader/com.live.sync.YYBLiveSyncService
06-16 16:22:29.422 778 3311 I /vendor/bin/hw/[email protected]: unbindService is called for service : com.tencent.android.qqdownloader/com.live.sync.YYBLiveSyncService and for client system
06-16 16:22:29.422 778 3311 I /vendor/bin/hw/[email protected]: size of service connections for service: com.tencent.android.qqdownloader/com.live.sync.YYBLiveSyncServiceafter removal is 0
06-16 16:22:29.422 778 3311 I /vendor/bin/hw/[email protected]: size of client connections for client: systemafter removal is 16
06-16 16:22:29.423 778 3311 I /vendor/bin/hw/[email protected]: destroyService is called for service : com.tencent.android.qqdownloader/com.live.sync.YYBLiveSyncService
06-16 16:22:29.424 778 3311 I /vendor/bin/hw/[email protected]: unbindService is called for service : android/com.android.server.content.SyncJobService and for client system
06-16 16:22:29.424 778 3311 I /vendor/bin/hw/[email protected]: size of service connections for service: android/com.android.server.content.SyncJobServiceafter removal is 0
06-16 16:22:29.424 778 3311 I /vendor/bin/hw/[email protected]: size of client connections for client: systemafter removal is 15
06-16 16:22:29.424 778 3311 I /vendor/bin/hw/[email protected]: destroyService is called for service : android/com.android.server.content.SyncJobService
06-16 16:22:29.438 1549 2263 W NotificationService: Toast already killed. pkg=com.v2ray.ang.dev callback=android.app.ITransientNotification$Stub$Proxy@c6a958d
06-16 16:22:29.440 778 3311 I /vendor/bin/hw/[email protected]: bindService is called for service : android/com.android.server.content.SyncJobService and for client system
06-16 16:22:29.440 778 3311 I /vendor/bin/hw/[email protected]: total connections for service : android/com.android.server.content.SyncJobServiceare :1
06-16 16:22:29.440 778 3311 I /vendor/bin/hw/[email protected]: total connections for client : systemare :16
06-16 16:22:29.441 1549 2083 D CompatibilityInfo: mCompatibilityFlags - 0
06-16 16:22:29.441 1549 2083 D CompatibilityInfo: applicationDensity - 440
06-16 16:22:29.441 1549 2083 D CompatibilityInfo: applicationScale - 1.0
06-16 16:22:29.442 778 3311 I /vendor/bin/hw/[email protected]: startService() is called for serviceandroid/com.android.server.content.SyncJobService
06-16 16:22:29.446 778 3311 I /vendor/bin/hw/[email protected]: bindService is called for service : com.tencent.android.qqdownloader/com.live.sync.YYBLiveSyncService and for client system
06-16 16:22:29.446 778 3311 I /vendor/bin/hw/[email protected]: total connections for service : com.tencent.android.qqdownloader/com.live.sync.YYBLiveSyncServiceare :1
06-16 16:22:29.446 778 3311 I /vendor/bin/hw/[email protected]: total connections for client : systemare :17
06-16 16:22:29.447 1549 2083 D CompatibilityInfo: mCompatibilityFlags - 0
06-16 16:22:29.447 1549 2083 D CompatibilityInfo: applicationDensity - 440
06-16 16:22:29.447 1549 2083 D CompatibilityInfo: applicationScale - 1.0
06-16 16:22:29.450 778 3311 I /vendor/bin/hw/[email protected]: startService() is called for servicecom.tencent.android.qqdownloader/com.live.sync.YYBLiveSyncService
06-16 16:22:29.462 778 3311 I /vendor/bin/hw/[email protected]: unbindService is called for service : com.tencent.android.qqdownloader/com.live.sync.YYBLiveSyncService and for client system
06-16 16:22:29.462 778 3311 I /vendor/bin/hw/[email protected]: size of service connections for service: com.tencent.android.qqdownloader/com.live.sync.YYBLiveSyncServiceafter removal is 0
06-16 16:22:29.462 778 3311 I /vendor/bin/hw/[email protected]: size of client connections for client: systemafter removal is 16
06-16 16:22:29.463 778 3311 I /vendor/bin/hw/[email protected]: destroyService is called for service : com.tencent.android.qqdownloader/com.live.sync.YYBLiveSyncService
06-16 16:22:29.464 778 3311 I /vendor/bin/hw/[email protected]: unbindService is called for service : android/com.android.server.content.SyncJobService and for client system
06-16 16:22:29.464 778 3311 I /vendor/bin/hw/[email protected]: size of service connections for service: android/com.android.server.content.SyncJobServiceafter removal is 0
06-16 16:22:29.464 778 3311 I /vendor/bin/hw/[email protected]: size of client connections for client: systemafter removal is 15
06-16 16:22:29.464 778 3311 I /vendor/bin/hw/[email protected]: destroyService is called for service : android/com.android.server.content.SyncJobService
06-16 16:22:29.467 1549 2083 W SyncManager: failed sync operation JobId=109264 ***/com.tencent.android.qqdownloader.YYBLiveAccountProvider.account u0 [com.tencent.android.qqdownloader.YYBLiveAccountProvider] USER ExpectedIn=0s STANDBY-EXEMPTED Reason=10227, SyncResult: syncAlreadyInProgress: true stats [] miSyncResult: resultMessage
06-16 16:22:29.512 730 27444 D : updateNewAdValue received dataLux: 195
06-16 16:22:29.512 730 27444 D : updateNewAdValue getSLSLevel: 0
06-16 16:22:29.512 730 27444 D : updateNewAdValue levelDiff: 0
06-16 16:22:29.537 845 919 W HWComposer: Ignoring duplicate VSYNC event from HWC for display 19260777630703489 (t=85658302084000)
06-16 16:22:29.553 845 919 W HWComposer: Ignoring duplicate VSYNC event from HWC for display 19260777630703489 (t=85658318392000)
06-16 16:22:29.570 845 919 W HWComposer: Ignoring duplicate VSYNC event from HWC for display 19260777630703489 (t=85658335434000)
06-16 16:22:29.587 845 919 W HWComposer: Ignoring duplicate VSYNC event from HWC for display 19260777630703489 (t=85658352080000)
06-16 16:22:29.595 20338 31580 I Market-NetworkMonitor: Connectivity changed, wifi is connected!
06-16 16:22:29.599 20338 31582 I Market-RetryService: trySchedule, needSchedule: false
06-16 16:22:29.602 845 919 W HWComposer: Ignoring duplicate VSYNC event from HWC for display 19260777630703489 (t=85658368421000)
06-16 16:22:29.605 1549 2305 D CompatibilityInfo: mCompatibilityFlags - 0
06-16 16:22:29.605 1549 2305 D CompatibilityInfo: applicationDensity - 440
06-16 16:22:29.605 1549 2305 D CompatibilityInfo: applicationScale - 1.0
06-16 16:22:29.605 778 3311 I /vendor/bin/hw/[email protected]: startService() is called for servicecom.xiaomi.market/.service.CloudConfigSyncService
06-16 16:22:29.608 20338 20338 I Market-ServiceUtils: startForeground: CloudConfigSyncService
06-16 16:22:29.617 1549 2005 I MiuiNetworkPolicy: updateUidState uid = 10136, uidState = 5
06-16 16:22:29.617 629 3162 D OemNetd : whiteListUid: uid=10136, wmm=add
06-16 16:22:29.619 778 3311 I /vendor/bin/hw/[email protected]: destroyService is called for service : com.xiaomi.market/.service.CloudConfigSyncService
06-16 16:22:29.620 845 919 W HWComposer: Ignoring duplicate VSYNC event from HWC for display 19260777630703489 (t=85658385316000)
06-16 16:22:29.621 730 27444 D : updateNewAdValue received dataLux: 195
06-16 16:22:29.621 730 27444 D : updateNewAdValue getSLSLevel: 0
06-16 16:22:29.621 730 27444 D : updateNewAdValue levelDiff: 0
06-16 16:22:29.623 1549 2005 I MiuiNetworkPolicy: updateUidState uid = 10102, uidState = 5
06-16 16:22:29.623 629 3162 D OemNetd : whiteListUid: uid=10102, wmm=add
06-16 16:22:29.625 20338 20338 I Market-ServiceUtils: stop foreground service: CloudConfigSyncService
06-16 16:22:29.629 1549 2005 I MiuiNetworkPolicy: updateUidState uid = 10136, uidState = 11
06-16 16:22:29.630 629 3162 D OemNetd : whiteListUid: uid=10136, wmm=del
06-16 16:22:29.632 1549 2005 I MiuiNetworkPolicy: updateUidState uid = 10102, uidState = 11
06-16 16:22:29.632 629 3162 D OemNetd : whiteListUid: uid=10102, wmm=del
06-16 16:22:29.692 730 2067 D : readbrightness,out:1101.
06-16 16:22:29.726 2085 2085 D StatusBar: onNotificationPosted key=0|com.xiaomi.market|213495178|null|10136 isUpdate=false
06-16 16:22:29.726 3845 13064 W Parcel : **** enforceInterface() expected 'com.miui.gamebooster.service.ISecurityCenterNotificationListener' but read 'android.service.notification.INotificationListener'
06-16 16:22:29.727 3845 13064 W Binder : Caught a RuntimeException from the binder stub implementation.
06-16 16:22:29.727 3845 13064 W Binder : java.lang.SecurityException: Binder invocation to an incorrect interface
06-16 16:22:29.727 3845 13064 W Binder : at android.os.Parcel.nativeEnforceInterface(Native Method)
06-16 16:22:29.727 3845 13064 W Binder : at android.os.Parcel.enforceInterface(Parcel.java:626)
06-16 16:22:29.727 3845 13064 W Binder : at com.miui.gamebooster.service.ISecurityCenterNotificationListener$Stub.onTransact(Unknown Source:22)
06-16 16:22:29.727 3845 13064 W Binder : at android.os.Binder.execTransactInternal(Binder.java:1024)
06-16 16:22:29.727 3845 13064 W Binder : at android.os.Binder.execTransact(Binder.java:997)
06-16 16:22:29.727 2085 2085 D StatusBar: filter Notification key=0|com.xiaomi.market|213495178|null|10136
06-16 16:22:29.729 21298 21298 D IMReply:Notif: onNotificationPosted before sbn = 213495178
06-16 16:22:29.731 730 27444 D : updateNewAdValue received dataLux: 195
06-16 16:22:29.731 730 27444 D : updateNewAdValue getSLSLevel: 0
06-16 16:22:29.731 730 27444 D : updateNewAdValue levelDiff: 0
06-16 16:22:29.732 2085 2085 D StatusBar: onNotificationRemoved key=0|com.xiaomi.market|213495178|null|10136 reason=8
06-16 16:22:29.732 2085 2085 W StatusBar: removeNotification for unknown key: 0|com.xiaomi.market|213495178|null|10136
06-16 16:22:29.732 2085 2085 D StatusBar: removeNotification null
06-16 16:22:29.733 21298 21298 D IMReply:Notif: onNotificationPosted onNotificationRemoved sbn = 213495178
06-16 16:22:29.843 730 27444 D : updateNewAdValue received dataLux: 195
06-16 16:22:29.843 730 27444 D : updateNewAdValue getSLSLevel: 0
06-16 16:22:29.843 730 27444 D : updateNewAdValue levelDiff: 0
06-16 16:22:29.952 730 27444 D : updateNewAdValue received dataLux: 195
06-16 16:22:29.952 730 27444 D : updateNewAdValue getSLSLevel: 0
06-16 16:22:29.952 730 27444 D : updateNewAdValue levelDiff: 0
06-16 16:22:30.061 1549 1973 W SensorService: Dropping 1 cached events (10000/10000) to save 1/1 new events. 18 events previously dropped
06-16 16:22:30.061 730 27444 D : updateNewAdValue received dataLux: 195
06-16 16:22:30.061 730 27444 D : updateNewAdValue getSLSLevel: 0
06-16 16:22:30.061 730 27444 D : updateNewAdValue levelDiff: 0
06-16 16:22:30.174 730 27444 D : updateNewAdValue received dataLux: 195
06-16 16:22:30.174 730 27444 D : updateNewAdValue getSLSLevel: 0
06-16 16:22:30.174 730 27444 D : updateNewAdValue levelDiff: 0
06-16 16:22:30.295 730 27444 D : updateNewAdValue received dataLux: 195
06-16 16:22:30.295 730 27444 D : updateNewAdValue getSLSLevel: 0
06-16 16:22:30.295 730 27444 D : updateNewAdValue levelDiff: 0
06-16 16:22:30.402 730 27444 D : updateNewAdValue received dataLux: 195
06-16 16:22:30.402 730 27444 D : updateNewAdValue getSLSLevel: 0
06-16 16:22:30.402 730 27444 D : updateNewAdValue levelDiff: 0
06-16 16:22:30.409 2417 2417 D ScreenView_MinusOneScreenView: dispatchDraw:1080
06-16 16:22:30.423 18696 18764 I AudioManager: In isBluetoothScoOn(), calling application: com.huaqin.sarcontroller
06-16 16:22:30.424 1549 4982 I AS.AudioDeviceBroker: In isBluetoothScoOnForApp(), mForcedUseForCommExt: 1
06-16 16:22:30.425 18696 18764 I AudioManager: In isSpeakerphoneOn(), calling application: com.huaqin.sarcontroller
06-16 16:22:30.425 1549 4982 I AS.AudioDeviceBroker: In isSpeakerphoneOn(), mForcedUseForCommExt: 1
06-16 16:22:30.479 1549 31593 I DpmTcmClient: RegisterTcmMonitor from: $Proxy0
06-16 16:22:30.498 629 31594 E ResolverController: No valid NAT64 prefix (100, <unspecified>/0)
06-16 16:22:30.501 629 1367 I miuiFirewall: miui firewall isSystemServer deadlock
06-16 16:22:30.501 629 1367 I miuiFirewall: miui firewall isSystemServer deadlock
06-16 16:22:30.512 730 27444 D : updateNewAdValue received dataLux: 195
06-16 16:22:30.512 730 27444 D : updateNewAdValue getSLSLevel: 0
06-16 16:22:30.512 730 27444 D : updateNewAdValue levelDiff: 0
06-16 16:22:30.589 25565 25841 I KcSdk : [KcState] auto_check_msg: android.net.conn.CONNECTIVITY_CHANGE
06-16 16:22:30.591 25565 25841 I KcSdk : [PhoneAdapterUtil] fetchSoluAndSaveSafely called
06-16 16:22:30.593 25565 25841 I KcSdk : [KcState] [checkChange]: errorCode:-10001subErrorCode:0, isKingCard:false, apn:null, requestParamType:0, requestParamValue:null, unicomRet:0, Product:0
06-16 16:22:30.594 25565 25841 I KcSdk : [KcState] [notifyNetworkChange] - (true) OrderCheckResult{kingcard=0, errorCode=-10001, subErrorCode=0, product=0, phoneNum='null', operator=-2, activationUrl='https://personalkingcard.3g.qq.com/activity/personal/index.html#/?logintype=2&j=1&src=76_1_u&sdi_from=20', stateTag='null', extra='null'}
06-16 16:22:30.594 25565 25841 I KcSdk : [KcState] [notifyNetworkChange] - (false) OrderCheckResult{kingcard=0, errorCode=-10001, subErrorCode=0, product=0, phoneNum='null', operator=-2, activationUrl='https://personalkingcard.3g.qq.com/activity/personal/index.html#/?logintype=2&j=1&src=76_1_u&sdi_from=20', stateTag='null', extra='null'}
06-16 16:22:30.623 730 27444 D : updateNewAdValue received dataLux: 195
06-16 16:22:30.623 730 27444 D : updateNewAdValue getSLSLevel: 0
06-16 16:22:30.623 730 27444 D : updateNewAdValue levelDiff: 0
06-16 16:22:30.693 730 2067 D : readbrightness,out:1101.
06-16 16:22:30.733 730 27444 D : updateNewAdValue received dataLux: 195
06-16 16:22:30.733 730 27444 D : updateNewAdValue getSLSLevel: 0
06-16 16:22:30.733 730 27444 D : updateNewAdValue levelDiff: 0
06-16 16:22:30.842 730 27444 D : updateNewAdValue received dataLux: 195
06-16 16:22:30.842 730 27444 D : updateNewAdValue getSLSLevel: 0
06-16 16:22:30.842 730 27444 D : updateNewAdValue levelDiff: 0
06-16 16:22:30.953 730 27444 D : updateNewAdValue received dataLux: 195
06-16 16:22:30.953 730 27444 D : updateNewAdValue getSLSLevel: 0
06-16 16:22:30.953 730 27444 D : updateNewAdValue levelDiff: 0
06-16 16:22:30.954 1549 1699 W WindowManager: Unable to start animation, surface is null or no children.
06-16 16:22:31.062 730 27444 D : updateNewAdValue received dataLux: 195
06-16 16:22:31.062 730 27444 D : updateNewAdValue getSLSLevel: 0
06-16 16:22:31.062 730 27444 D : updateNewAdValue levelDiff: 0
06-16 16:22:31.173 730 27444 D : updateNewAdValue received dataLux: 195
06-16 16:22:31.174 730 27444 D : updateNewAdValue getSLSLevel: 0
06-16 16:22:31.174 730 27444 D : updateNewAdValue levelDiff: 0
06-16 16:22:31.292 730 27444 D : updateNewAdValue received dataLux: 195
06-16 16:22:31.292 730 27444 D : updateNewAdValue getSLSLevel: 0
06-16 16:22:31.292 730 27444 D : updateNewAdValue levelDiff: 0
06-16 16:22:31.385 1549 2005 I MiuiNetworkPolicy: bandwidth: 2 KB/s, Max bandwidth: 6691 KB/s
06-16 16:22:31.403 730 27444 D : updateNewAdValue received dataLux: 195
06-16 16:22:31.403 730 27444 D : updateNewAdValue getSLSLevel: 0
06-16 16:22:31.403 730 27444 D : updateNewAdValue levelDiff: 0
06-16 16:22:31.438 18696 18764 I AudioManager: In isBluetoothScoOn(), calling application: com.huaqin.sarcontroller
06-16 16:22:31.439 1549 2305 I AS.AudioDeviceBroker: In isBluetoothScoOnForApp(), mForcedUseForCommExt: 1
06-16 16:22:31.439 18696 18764 I AudioManager: In isSpeakerphoneOn(), calling application: com.huaqin.sarcontroller
06-16 16:22:31.439 1549 2305 I AS.AudioDeviceBroker: In isSpeakerphoneOn(), mForcedUseForCommExt: 1
06-16 16:22:31.512 730 27444 D : updateNewAdValue received dataLux: 196
06-16 16:22:31.513 730 27444 D : updateNewAdValue getSLSLevel: 0
06-16 16:22:31.513 730 27444 D : updateNewAdValue levelDiff: 0
06-16 16:22:31.623 730 27444 D : updateNewAdValue received dataLux: 196
06-16 16:22:31.623 730 27444 D : updateNewAdValue getSLSLevel: 0
06-16 16:22:31.623 730 27444 D : updateNewAdValue levelDiff: 0
06-16 16:22:31.694 730 2067 D : readbrightness,out:1101.
06-16 16:22:31.732 730 27444 D : updateNewAdValue received dataLux: 195
06-16 16:22:31.732 730 27444 D : updateNewAdValue getSLSLevel: 0
06-16 16:22:31.732 730 27444 D : updateNewAdValue levelDiff: 0
06-16 16:22:31.842 730 27444 D : updateNewAdValue received dataLux: 195
06-16 16:22:31.842 730 27444 D : updateNewAdValue getSLSLevel: 0
06-16 16:22:31.842 730 27444 D : updateNewAdValue levelDiff: 0
06-16 16:22:31.954 730 27444 D : updateNewAdValue received dataLux: 195
06-16 16:22:31.954 730 27444 D : updateNewAdValue getSLSLevel: 0
06-16 16:22:31.954 730 27444 D : updateNewAdValue levelDiff: 0
06-16 16:22:32.062 1549 1973 W SensorService: Dropping 1 cached events (10000/10000) to save 1/1 new events. 17 events previously dropped
06-16 16:22:32.063 730 27444 D : updateNewAdValue received dataLux: 196
06-16 16:22:32.063 730 27444 D : updateNewAdValue getSLSLevel: 0
06-16 16:22:32.063 730 27444 D : updateNewAdValue levelDiff: 0
06-16 16:22:32.173 730 27444 D : updateNewAdValue received dataLux: 196
06-16 16:22:32.174 730 27444 D : updateNewAdValue getSLSLevel: 0
06-16 16:22:32.174 730 27444 D : updateNewAdValue levelDiff: 0
06-16 16:22:32.292 730 27444 D : updateNewAdValue received dataLux: 195
06-16 16:22:32.292 730 27444 D : updateNewAdValue getSLSLevel: 0
06-16 16:22:32.292 730 27444 D : updateNewAdValue levelDiff: 0
06-16 16:22:32.402 730 27444 D : updateNewAdValue received dataLux: 195
06-16 16:22:32.402 730 27444 D : updateNewAdValue getSLSLevel: 0
06-16 16:22:32.402 730 27444 D : updateNewAdValue levelDiff: 0
06-16 16:22:32.450 18696 18764 I AudioManager: In isBluetoothScoOn(), calling application: com.huaqin.sarcontroller
06-16 16:22:32.451 1549 3712 I AS.AudioDeviceBroker: In isBluetoothScoOnForApp(), mForcedUseForCommExt: 1
06-16 16:22:32.452 18696 18764 I AudioManager: In isSpeakerphoneOn(), calling application: com.huaqin.sarcontroller
06-16 16:22:32.452 1549 3712 I AS.AudioDeviceBroker: In isSpeakerphoneOn(), mForcedUseForCommExt: 1
06-16 16:22:32.513 730 27444 D : updateNewAdValue received dataLux: 195
06-16 16:22:32.513 730 27444 D : updateNewAdValue getSLSLevel: 0
06-16 16:22:32.513 730 27444 D : updateNewAdValue levelDiff: 0
06-16 16:22:32.547 21240 31601 D IdProviderImpl: getOAID
06-16 16:22:32.621 730 27444 D : updateNewAdValue received dataLux: 196
06-16 16:22:32.621 730 27444 D : updateNewAdValue getSLSLevel: 0
06-16 16:22:32.621 730 27444 D : updateNewAdValue levelDiff: 0
06-16 16:22:32.624 629 31603 E ResolverController: No valid NAT64 prefix (100, <unspecified>/0)
06-16 16:22:32.695 730 2067 D : readbrightness,out:1101.
06-16 16:22:32.733 730 27444 D : updateNewAdValue received dataLux: 196
06-16 16:22:32.733 730 27444 D : updateNewAdValue getSLSLevel: 0
06-16 16:22:32.733 730 27444 D : updateNewAdValue levelDiff: 0
06-16 16:22:32.842 730 27444 D : updateNewAdValue received dataLux: 196
06-16 16:22:32.842 730 27444 D : updateNewAdValue getSLSLevel: 0
06-16 16:22:32.842 730 27444 D : updateNewAdValue levelDiff: 0
06-16 16:22:32.953 730 27444 D : updateNewAdValue received dataLux: 195
06-16 16:22:32.953 730 27444 D : updateNewAdValue getSLSLevel: 0
06-16 16:22:32.953 730 27444 D : updateNewAdValue levelDiff: 0
06-16 16:22:33.063 730 27444 D : updateNewAdValue received dataLux: 196
06-16 16:22:33.063 730 27444 D : updateNewAdValue getSLSLevel: 0
06-16 16:22:33.063 730 27444 D : updateNewAdValue levelDiff: 0
06-16 16:22:33.174 730 27444 D : updateNewAdValue received dataLux: 196
06-16 16:22:33.174 730 27444 D : updateNewAdValue getSLSLevel: 0
06-16 16:22:33.174 730 27444 D : updateNewAdValue levelDiff: 0
06-16 16:22:33.292 730 27444 D : updateNewAdValue received dataLux: 196
06-16 16:22:33.292 730 27444 D : updateNewAdValue getSLSLevel: 0
06-16 16:22:33.292 730 27444 D : updateNewAdValue levelDiff: 0
06-16 16:22:33.402 730 27444 D : updateNewAdValue received dataLux: 195
06-16 16:22:33.402 730 27444 D : updateNewAdValue getSLSLevel: 0
06-16 16:22:33.402 730 27444 D : updateNewAdValue levelDiff: 0
06-16 16:22:33.484 18696 18764 I AudioManager: In isBluetoothScoOn(), calling application: com.huaqin.sarcontroller
06-16 16:22:33.486 1549 4982 I AS.AudioDeviceBroker: In isBluetoothScoOnForApp(), mForcedUseForCommExt: 1
06-16 16:22:33.487 18696 18764 I AudioManager: In isSpeakerphoneOn(), calling application: com.huaqin.sarcontroller
06-16 16:22:33.487 1549 4982 I AS.AudioDeviceBroker: In isSpeakerphoneOn(), mForcedUseForCommExt: 1
06-16 16:22:33.513 730 27444 D : updateNewAdValue received dataLux: 196
06-16 16:22:33.513 730 27444 D : updateNewAdValue getSLSLevel: 0
06-16 16:22:33.513 730 27444 D : updateNewAdValue levelDiff: 0
06-16 16:22:33.578 629 31605 E ResolverController: No valid NAT64 prefix (100, <unspecified>/0)
06-16 16:22:33.579 629 31607 E ResolverController: No valid NAT64 prefix (100, <unspecified>/0)
06-16 16:22:33.622 730 27444 D : updateNewAdValue received dataLux: 195
06-16 16:22:33.622 730 27444 D : updateNewAdValue getSLSLevel: 0
06-16 16:22:33.622 730 27444 D : updateNewAdValue levelDiff: 0
06-16 16:22:33.696 730 2067 D : readbrightness,out:1101.
06-16 16:22:33.732 730 27444 D : updateNewAdValue received dataLux: 195
06-16 16:22:33.732 730 27444 D : updateNewAdValue getSLSLevel: 0
06-16 16:22:33.732 730 27444 D : updateNewAdValue levelDiff: 0
06-16 16:22:33.842 730 27444 D : updateNewAdValue received dataLux: 195
06-16 16:22:33.842 730 27444 D : updateNewAdValue getSLSLevel: 0
06-16 16:22:33.842 730 27444 D : updateNewAdValue levelDiff: 0
06-16 16:22:33.952 730 27444 D : updateNewAdValue received dataLux: 195
06-16 16:22:33.952 730 27444 D : updateNewAdValue getSLSLevel: 0
06-16 16:22:33.952 730 27444 D : updateNewAdValue levelDiff: 0
06-16 16:22:34.062 730 27444 D : updateNewAdValue received dataLux: 195
06-16 16:22:34.062 730 27444 D : updateNewAdValue getSLSLevel: 0
06-16 16:22:34.062 730 27444 D : updateNewAdValue levelDiff: 0
06-16 16:22:34.172 1549 1973 W SensorService: Dropping 1 cached events (10000/10000) to save 1/1 new events. 18 events previously dropped
06-16 16:22:34.173 730 27444 D : updateNewAdValue received dataLux: 195
06-16 16:22:34.173 730 27444 D : updateNewAdValue getSLSLevel: 0
06-16 16:22:34.173 730 27444 D : updateNewAdValue levelDiff: 0
06-16 16:22:34.293 730 27444 D : updateNewAdValue received dataLux: 195
06-16 16:22:34.293 730 27444 D : updateNewAdValue getSLSLevel: 0
06-16 16:22:34.293 730 27444 D : updateNewAdValue levelDiff: 0
06-16 16:22:34.389 1549 2005 I MiuiNetworkPolicy: bandwidth: 64 KB/s, Max bandwidth: 6691 KB/s
06-16 16:22:34.402 730 27444 D : updateNewAdValue received dataLux: 195
06-16 16:22:34.402 730 27444 D : updateNewAdValue getSLSLevel: 0
06-16 16:22:34.402 730 27444 D : updateNewAdValue levelDiff: 0
06-16 16:22:34.490 18696 18764 I AudioManager: In isBluetoothScoOn(), calling application: com.huaqin.sarcontroller
06-16 16:22:34.491 1549 3712 I AS.AudioDeviceBroker: In isBluetoothScoOnForApp(), mForcedUseForCommExt: 1
06-16 16:22:34.491 18696 18764 I AudioManager: In isSpeakerphoneOn(), calling application: com.huaqin.sarcontroller
06-16 16:22:34.492 1549 3712 I AS.AudioDeviceBroker: In isSpeakerphoneOn(), mForcedUseForCommExt: 1
06-16 16:22:34.508 730 27444 D : updateNewAdValue received dataLux: 195
06-16 16:22:34.508 730 27444 D : updateNewAdValue getSLSLevel: 0
06-16 16:22:34.508 730 27444 D : updateNewAdValue levelDiff: 0
06-16 16:22:34.622 730 27444 D : updateNewAdValue received dataLux: 195
06-16 16:22:34.622 730 27444 D : updateNewAdValue getSLSLevel: 0
06-16 16:22:34.622 730 27444 D : updateNewAdValue levelDiff: 0
06-16 16:22:34.631 1549 2002 D NtpTrustedTime: currentTimeMillis() cache hit
06-16 16:22:34.632 629 3162 I netd : trafficSwapActiveStatsMap() <0.70ms>
06-16 16:22:34.634 629 3162 I netd : tetherGetStats() <1.20ms>
06-16 16:22:34.650 1549 2002 D NtpTrustedTime: currentTimeMillis() cache hit
06-16 16:22:34.653 629 3162 I netd : bandwidthSetGlobalAlert(131072) <0.25ms>
06-16 16:22:34.653 3845 5123 I TrafficManageService: mina mTrafficStatsReceiver onReceive
06-16 16:22:34.697 730 2067 D : readbrightness,out:1101.
06-16 16:22:34.732 730 27444 D : updateNewAdValue received dataLux: 195
06-16 16:22:34.732 730 27444 D : updateNewAdValue getSLSLevel: 0
06-16 16:22:34.732 730 27444 D : updateNewAdValue levelDiff: 0
06-16 16:22:34.841 730 27444 D : updateNewAdValue received dataLux: 195
06-16 16:22:34.841 730 27444 D : updateNewAdValue getSLSLevel: 0
06-16 16:22:34.841 730 27444 D : updateNewAdValue levelDiff: 0
06-16 16:22:34.866 1549 3712 D CompatibilityInfo: mCompatibilityFlags - 0
06-16 16:22:34.866 1549 3712 D CompatibilityInfo: applicationDensity - 440
06-16 16:22:34.866 1549 3712 D CompatibilityInfo: applicationScale - 1.0
06-16 16:22:34.867 778 3311 I /vendor/bin/hw/[email protected]: startService() is called for servicecom.v2ray.ang.dev/com.v2ray.ang.service.V2RayVpnService
06-16 16:22:34.882 28689 28689 I Toast : Show toast from OpPackageName:com.v2ray.ang.dev, PackageName:com.v2ray.ang.dev
06-16 16:22:34.890 29085 29118 I oLibV2RayDaemo: Waiting for a blocking GC ProfileSaver
06-16 16:22:34.905 29085 29118 I oLibV2RayDaemo: WaitForGcToComplete blocked ProfileSaver on ProfileSaver for 15.599ms
06-16 16:22:34.918 29085 29085 D com.v2ray.ang.dev: {
06-16 16:22:34.918 29085 29085 D com.v2ray.ang.dev: "dns": {
06-16 16:22:34.918 29085 29085 D com.v2ray.ang.dev: "hosts": {
06-16 16:22:34.918 29085 29085 D com.v2ray.ang.dev: "domain:googleapis.cn": "googleapis.com"
06-16 16:22:34.918 29085 29085 D com.v2ray.ang.dev: },
06-16 16:22:34.918 29085 29085 D com.v2ray.ang.dev: "servers": [
06-16 16:22:34.918 29085 29085 D com.v2ray.ang.dev: "1.1.1.1"
06-16 16:22:34.918 29085 29085 D com.v2ray.ang.dev: ]
06-16 16:22:34.918 29085 29085 D com.v2ray.ang.dev: },
06-16 16:22:34.918 29085 29085 D com.v2ray.ang.dev: "inbounds": [
06-16 16:22:34.918 29085 29085 D com.v2ray.ang.dev: {
06-16 16:22:34.918 29085 29085 D com.v2ray.ang.dev: "listen": "127.0.0.1",
06-16 16:22:34.918 29085 29085 D com.v2ray.ang.dev: "port": 10808,
06-16 16:22:34.918 29085 29085 D com.v2ray.ang.dev: "protocol": "socks",
06-16 16:22:34.918 29085 29085 D com.v2ray.ang.dev: "settings": {
06-16 16:22:34.918 29085 29085 D com.v2ray.ang.dev: "auth": "noauth",
06-16 16:22:34.918 29085 29085 D com.v2ray.ang.dev: "udp": true,
06-16 16:22:34.918 29085 29085 D com.v2ray.ang.dev: "userLevel": 8
06-16 16:22:34.918 29085 29085 D com.v2ray.ang.dev: },
06-16 16:22:34.918 29085 29085 D com.v2ray.ang.dev: "sniffing": {
06-16 16:22:34.918 29085 29085 D com.v2ray.ang.dev: "destOverride": [
06-16 16:22:34.918 29085 29085 D com.v2ray.ang.dev: "http",
06-16 16:22:34.918 29085 29085 D com.v2ray.ang.dev: "tls"
06-16 16:22:34.918 29085 29085 D com.v2ray.ang.dev: ],
06-16 16:22:34.918 29085 29085 D com.v2ray.ang.dev: "enabled": true
06-16 16:22:34.918 29085 29085 D com.v2ray.ang.dev: },
06-16 16:22:34.918 29085 29085 D com.v2ray.ang.dev: "tag": "socks"
06-16 16:22:34.918 29085 29085 D com.v2ray.ang.dev: },
06-16 16:22:34.918 29085 29085 D com.v2ray.ang.dev: {
06-16 16:22:34.918 29085 29085 D com.v2ray.ang.dev: "listen": "127.0.0.1",
06-16 16:22:34.918 29085 29085 D com.v2ray.ang.dev: "port": 10809,
06-16 16:22:34.918 29085 29085 D com.v2ray.ang.dev: "protocol": "http",
06-16 16:22:34.918 29085 29085 D com.v2ray.ang.dev: "settings": {
06-16 16:22:34.918 29085 29085 D com.v2ray.ang.dev: "userLevel": 8
06-16 16:22:34.918 29085 29085 D com.v2ray.ang.dev: },
06-16 16:22:34.918 29085 29085 D com.v2ray.ang.dev: "tag": "http"
06-16 16:22:34.918 29085 29085 D com.v2ray.ang.dev: }
06-16 16:22:34.918 29085 29085 D com.v2ray.ang.dev: ],
06-16 16:22:34.918 29085 29085 D com.v2ray.ang.dev: "log": {
06-16 16:22:34.918 29085 29085 D com.v2ray.ang.dev: "loglevel": "warning"
06-16 16:22:34.918 29085 29085 D com.v2ray.ang.dev: },
06-16 16:22:34.918 29085 29085 D com.v2ray.ang.dev: "outbounds": [
06-16 16:22:34.918 29085 29085 D com.v2ray.ang.dev: {
06-16 16:22:34.918 29085 29085 D com.v2ray.ang.dev: "mux": {
06-16 16:22:34.918 29085 29085 D com.v2ray.ang.dev: "concurrency": 8,
06-16 16:22:34.918 29085 29085 D com.v2ray.ang.dev: "enabled": false
06-16 16:22:34.918 29085 29085 D com.v2ray.ang.dev: },
06-16 16:22:34.918 29085 29085 D com.v2ray.ang.dev: "protocol": "vless",
06-16 16:22:34.918 29085 29085 D com.v2ray.ang.dev: "settings": {
06-16 16:22:34.918 29085 29085 D com.v2ray.ang.dev: "vnext": [
06-16 16:22:34.918 29085 29085 D com.v2ray.ang.dev: {
06-16 16:22:34.918 29085 29085 D com.v2ray.ang.dev: "address": "43.201.36.61",
06-16 16:22:34.918 29085 29085 D com.v2ray.ang.dev: "port": 8080,
06-16 16:22:34.918 29085 29085 D com.v2ray.ang.dev: "users": [
06-16 16:22:34.918 29085 29085 D com.v2ray.ang.dev: {
06-16 16:22:34.918 29085 29085 D com.v2ray.ang.dev: "encryption": "none",
06-16 16:22:34.918 29085 29085 D com.v2ray.ang.dev: "flow": "",
06-16 16:22:34.918 29085 29085 D com.v2ray.ang.dev: "id": "5ab26cae-f08b-4ddb-d4e6-2546b12d97d2",
06-16 16:22:34.918 29085 29085 D com.v2ray.ang.dev: "level": 8,
06-16 16:22:34.918 29085 29085 D com.v2ray.ang.dev: "security": "auto"
06-16 16:22:34.918 29085 29085 D com.v2ray.ang.dev: }
06-16 16:22:34.918 29085 29085 D com.v2ray.ang.dev: ]
06-16 16:22:34.918 29085 29085 D com.v2ray.ang.dev: }
06-16 16:22:34.918 29085 29085 D com.v2ray.ang.dev: ]
06-16 16:22:34.918 29085 29085 D com.v2ray.ang.dev: },
06-16 16:22:34.918 29085 29085 D com.v2ray.ang.dev: "streamSettings": {
06-16 16:22:34.918 29085 29085 D com.v2ray.ang.dev: "network": "tcp",
06-16 16:22:34.918 29085 29085 D com.v2ray.ang.dev: "realitySettings": {
06-16 16:22:34.918 29085 29085 D com.v2ray.ang.dev: "allowInsecure": false,
06-16 16:22:34.918 29085 29085 D com.v2ray.ang.dev: "fingerprint": "firefox",
06-16 16:22:34.918 29085 29085 D com.v2ray.ang.dev: "publicKey": "oLbjD1AnP3vegYyx0LLCkDX8WznVYZlfowyZuN7YLTU",
06-16 16:22:34.918 29085 29085 D com.v2ray.ang.dev: "serverName": "yahoo.com",
06-16 16:22:34.918 29085 29085 D com.v2ray.ang.dev: "shortId": "1ee00bdc",
06-16 16:22:34.918 29085 29085 D com.v2ray.ang.dev: "show": false,
06-16 16:22:34.918 29085 29085 D com.v2ray.ang.dev: "spiderX": "/"
06-16 16:22:34.918 29085 29085 D com.v2ray.ang.dev: },
06-16 16:22:34.918 29085 29085 D com.v2ray.ang.dev: "security": "reality",
06-16 16:22:34.918 29085 29085 D com.v2ray.ang.dev: "tcpSettings": {
06-16 16:22:34.918 29085 29085 D com.v2ray.ang.dev: "header": {
06-16 16:22:34.918 29085 29085 D com.v2ray.ang.dev: "type": "none"
06-16 16:22:34.918 29085 29085 D com.v2ray.ang.dev: }
06-16 16:22:34.918 29085 29085 D com.v2ray.ang.dev: }
06-16 16:22:34.918 29085 29085 D com.v2ray.ang.dev: },
06-16 16:22:34.918 29085 29085 D com.v2ray.ang.dev: "tag": "proxy"
06-16 16:22:34.918 29085 29085 D com.v2ray.ang.dev: },
06-16 16:22:34.918 29085 29085 D com.v2ray.ang.dev: {
06-16 16:22:34.918 29085 29085 D com.v2ray.ang.dev: "protocol": "freedom",
06-16 16:22:34.918 29085 29085 D com.v2ray.ang.dev: "settings": {},
06-16 16:22:34.918 29085 29085 D com.v2ray.ang.dev: "tag": "direct"
06-16 16:22:34.918 29085 29085 D com.v2ray.ang.dev: },
06-16 16:22:34.918 29085 29085 D com.v2ray.ang.dev: {
06-16 16:22:34.918 29085 29085 D com.v2ray.ang.dev: "protocol": "blackhole",
06-16 16:22:34.918 29085 29085 D com.v2ray.ang.dev: "settings": {
06-16 16:22:34.918 29085 29085 D com.v2ray.ang.dev: "response": {
06-16 16:22:34.918 29085 29085 D com.v2ray.ang.dev: "type": "http"
06-16 16:22:34.918 29085 29085 D com.v2ray.ang.dev: }
06-16 16:22:34.918 29085 29085 D com.v2ray.ang.dev: },
06-16 16:22:34.918 29085 29085 D com.v2ray.ang.dev: "tag": "block"
06-16 16:22:34.918 29085 29085 D com.v2ray.ang.dev: }
06-16 16:22:34.918 29085 29085 D com.v2ray.ang.dev: ],
06-16 16:22:34.918 29085 29085 D com.v2ray.ang.dev: "routing": {
06-16 16:22:34.918 29085 29085 D com.v2ray.ang.dev: "domainStrategy": "IPIfNonMatch",
06-16 16:22:34.918 29085 29085 D com.v2ray.ang.dev: "rules": [
06-16 16:22:34.918 29085 29085 D com.v2ray.ang.dev: {
06-16 16:22:34.918 29085 29085 D com.v2ray.ang.dev: "ip": [
06-16 16:22:34.918 29085 29085 D com.v2ray.ang.dev: "1.1.1.1"
06-16 16:22:34.918 29085 29085 D com.v2ray.ang.dev: ],
06-16 16:22:34.918 29085 29085 D com.v2ray.ang.dev: "outboundTag": "proxy",
06-16 16:22:34.918 29085 29085 D com.v2ray.ang.dev: "port": "53",
06-16 16:22:34.918 29085 29085 D com.v2ray.ang.dev: "type": "field"
06-16 16:22:34.918 29085 29085 D com.v2ray.ang.dev: }
06-16 16:22:34.918 29085 29085 D com.v2ray.ang.dev: ]
06-16 16:22:34.918 29085 29085 D com.v2ray.ang.dev: }
06-16 16:22:34.918 29085 29085 D com.v2ray.ang.dev: }
06-16 16:22:34.920 29085 29085 I GoLog : loading core config
06-16 16:22:34.920 29085 29121 I GoLog : Preparing Domain: 43.201.36.61:8080
06-16 16:22:34.920 29085 29121 I GoLog : Prepare Result: