-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhome-assistant.log.1
1383 lines (1383 loc) · 196 KB
/
home-assistant.log.1
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
2025-01-26 10:21:39.476 WARNING (SyncWorker_0) [homeassistant.loader] We found a custom integration blitzortung which has not been tested by Home Assistant. This component might cause stability problems, be sure to disable it if you experience issues with Home Assistant
2025-01-26 10:21:39.477 WARNING (SyncWorker_0) [homeassistant.loader] We found a custom integration spotcast which has not been tested by Home Assistant. This component might cause stability problems, be sure to disable it if you experience issues with Home Assistant
2025-01-26 10:21:39.478 WARNING (SyncWorker_0) [homeassistant.loader] We found a custom integration solcast_solar which has not been tested by Home Assistant. This component might cause stability problems, be sure to disable it if you experience issues with Home Assistant
2025-01-26 10:21:39.479 WARNING (SyncWorker_0) [homeassistant.loader] We found a custom integration creality_control which has not been tested by Home Assistant. This component might cause stability problems, be sure to disable it if you experience issues with Home Assistant
2025-01-26 10:21:39.479 WARNING (SyncWorker_0) [homeassistant.loader] We found a custom integration webrtc which has not been tested by Home Assistant. This component might cause stability problems, be sure to disable it if you experience issues with Home Assistant
2025-01-26 10:21:39.480 WARNING (SyncWorker_0) [homeassistant.loader] We found a custom integration tapo_control which has not been tested by Home Assistant. This component might cause stability problems, be sure to disable it if you experience issues with Home Assistant
2025-01-26 10:21:39.480 WARNING (SyncWorker_0) [homeassistant.loader] We found a custom integration google_home which has not been tested by Home Assistant. This component might cause stability problems, be sure to disable it if you experience issues with Home Assistant
2025-01-26 10:21:39.481 WARNING (SyncWorker_0) [homeassistant.loader] We found a custom integration uptime_kuma which has not been tested by Home Assistant. This component might cause stability problems, be sure to disable it if you experience issues with Home Assistant
2025-01-26 10:21:39.481 WARNING (SyncWorker_0) [homeassistant.loader] We found a custom integration places which has not been tested by Home Assistant. This component might cause stability problems, be sure to disable it if you experience issues with Home Assistant
2025-01-26 10:21:39.482 WARNING (SyncWorker_0) [homeassistant.loader] We found a custom integration edgeos which has not been tested by Home Assistant. This component might cause stability problems, be sure to disable it if you experience issues with Home Assistant
2025-01-26 10:21:39.482 WARNING (SyncWorker_0) [homeassistant.loader] We found a custom integration waste_collection_schedule which has not been tested by Home Assistant. This component might cause stability problems, be sure to disable it if you experience issues with Home Assistant
2025-01-26 10:21:39.482 WARNING (SyncWorker_0) [homeassistant.loader] We found a custom integration teamtracker which has not been tested by Home Assistant. This component might cause stability problems, be sure to disable it if you experience issues with Home Assistant
2025-01-26 10:21:39.483 WARNING (SyncWorker_0) [homeassistant.loader] We found a custom integration browser_mod which has not been tested by Home Assistant. This component might cause stability problems, be sure to disable it if you experience issues with Home Assistant
2025-01-26 10:21:39.483 WARNING (SyncWorker_0) [homeassistant.loader] We found a custom integration worlds_air_quality_index which has not been tested by Home Assistant. This component might cause stability problems, be sure to disable it if you experience issues with Home Assistant
2025-01-26 10:21:39.484 WARNING (SyncWorker_0) [homeassistant.loader] We found a custom integration smartthinq_sensors which has not been tested by Home Assistant. This component might cause stability problems, be sure to disable it if you experience issues with Home Assistant
2025-01-26 10:21:39.484 WARNING (SyncWorker_0) [homeassistant.loader] We found a custom integration bhyve which has not been tested by Home Assistant. This component might cause stability problems, be sure to disable it if you experience issues with Home Assistant
2025-01-26 10:21:39.484 WARNING (SyncWorker_0) [homeassistant.loader] We found a custom integration grocy which has not been tested by Home Assistant. This component might cause stability problems, be sure to disable it if you experience issues with Home Assistant
2025-01-26 10:21:39.485 WARNING (SyncWorker_0) [homeassistant.loader] We found a custom integration spook which has not been tested by Home Assistant. This component might cause stability problems, be sure to disable it if you experience issues with Home Assistant
2025-01-26 10:21:39.485 WARNING (SyncWorker_0) [homeassistant.loader] We found a custom integration garmin_connect which has not been tested by Home Assistant. This component might cause stability problems, be sure to disable it if you experience issues with Home Assistant
2025-01-26 10:21:39.486 WARNING (SyncWorker_0) [homeassistant.loader] We found a custom integration powerpal which has not been tested by Home Assistant. This component might cause stability problems, be sure to disable it if you experience issues with Home Assistant
2025-01-26 10:21:39.486 WARNING (SyncWorker_0) [homeassistant.loader] We found a custom integration echonetlite which has not been tested by Home Assistant. This component might cause stability problems, be sure to disable it if you experience issues with Home Assistant
2025-01-26 10:21:39.487 WARNING (SyncWorker_0) [homeassistant.loader] We found a custom integration public_transport_victoria which has not been tested by Home Assistant. This component might cause stability problems, be sure to disable it if you experience issues with Home Assistant
2025-01-26 10:21:39.487 WARNING (SyncWorker_0) [homeassistant.loader] We found a custom integration spotifyplus which has not been tested by Home Assistant. This component might cause stability problems, be sure to disable it if you experience issues with Home Assistant
2025-01-26 10:21:39.487 WARNING (SyncWorker_0) [homeassistant.loader] We found a custom integration watchman which has not been tested by Home Assistant. This component might cause stability problems, be sure to disable it if you experience issues with Home Assistant
2025-01-26 10:21:39.488 WARNING (SyncWorker_0) [homeassistant.loader] We found a custom integration hacs which has not been tested by Home Assistant. This component might cause stability problems, be sure to disable it if you experience issues with Home Assistant
2025-01-26 10:21:39.488 WARNING (SyncWorker_0) [homeassistant.loader] We found a custom integration pirateweather which has not been tested by Home Assistant. This component might cause stability problems, be sure to disable it if you experience issues with Home Assistant
2025-01-26 10:21:39.489 WARNING (SyncWorker_0) [homeassistant.loader] We found a custom integration localtuya which has not been tested by Home Assistant. This component might cause stability problems, be sure to disable it if you experience issues with Home Assistant
2025-01-26 10:21:39.489 WARNING (SyncWorker_0) [homeassistant.loader] We found a custom integration openplantbook which has not been tested by Home Assistant. This component might cause stability problems, be sure to disable it if you experience issues with Home Assistant
2025-01-26 10:21:39.489 WARNING (SyncWorker_0) [homeassistant.loader] We found a custom integration spook_inverse which has not been tested by Home Assistant. This component might cause stability problems, be sure to disable it if you experience issues with Home Assistant
2025-01-26 10:21:39.490 WARNING (SyncWorker_0) [homeassistant.loader] We found a custom integration sonoff which has not been tested by Home Assistant. This component might cause stability problems, be sure to disable it if you experience issues with Home Assistant
2025-01-26 10:21:39.490 WARNING (SyncWorker_0) [homeassistant.loader] We found a custom integration smart_irrigation which has not been tested by Home Assistant. This component might cause stability problems, be sure to disable it if you experience issues with Home Assistant
2025-01-26 10:21:39.491 WARNING (SyncWorker_0) [homeassistant.loader] We found a custom integration creality_wifi_box_control which has not been tested by Home Assistant. This component might cause stability problems, be sure to disable it if you experience issues with Home Assistant
2025-01-26 10:21:39.491 WARNING (SyncWorker_0) [homeassistant.loader] We found a custom integration plant which has not been tested by Home Assistant. This component might cause stability problems, be sure to disable it if you experience issues with Home Assistant
2025-01-26 10:21:39.491 WARNING (SyncWorker_0) [homeassistant.loader] We found a custom integration anniversaries which has not been tested by Home Assistant. This component might cause stability problems, be sure to disable it if you experience issues with Home Assistant
2025-01-26 10:21:40.611 INFO (MainThread) [homeassistant.setup] Setup of domain logger took 0.11 seconds
2025-01-26 10:21:40.611 INFO (MainThread) [homeassistant.setup] Setup of domain system_log took 0.11 seconds
2025-01-26 10:21:40.612 INFO (MainThread) [homeassistant.setup] Setting up http
2025-01-26 10:21:40.612 DEBUG (MainThread) [homeassistant.setup] Dependency api will wait for dependencies dict_keys(['http'])
2025-01-26 10:21:40.612 DEBUG (MainThread) [homeassistant.setup] Dependency auth will wait for dependencies dict_keys(['http'])
2025-01-26 10:21:40.612 DEBUG (MainThread) [homeassistant.setup] Dependency config will wait for dependencies dict_keys(['http'])
2025-01-26 10:21:40.612 INFO (MainThread) [homeassistant.setup] Setting up device_automation
2025-01-26 10:21:40.612 INFO (MainThread) [homeassistant.setup] Setup of domain device_automation took 0.00 seconds
2025-01-26 10:21:40.612 DEBUG (MainThread) [homeassistant.setup] Dependency diagnostics will wait for dependencies dict_keys(['http'])
2025-01-26 10:21:40.612 DEBUG (MainThread) [homeassistant.setup] Dependency file_upload will wait for dependencies dict_keys(['http'])
2025-01-26 10:21:40.613 DEBUG (MainThread) [homeassistant.setup] Dependency image_upload will wait for dependencies dict_keys(['http'])
2025-01-26 10:21:40.613 DEBUG (MainThread) [homeassistant.setup] Dependency person will wait for dependencies dict_keys(['image_upload', 'http'])
2025-01-26 10:21:40.613 DEBUG (MainThread) [homeassistant.setup] Dependency onboarding will wait for dependencies dict_keys(['auth', 'http', 'person'])
2025-01-26 10:21:40.613 DEBUG (MainThread) [homeassistant.setup] Dependency lovelace will wait for dependencies dict_keys(['onboarding'])
2025-01-26 10:21:40.613 DEBUG (MainThread) [homeassistant.setup] Dependency repairs will wait for dependencies dict_keys(['http'])
2025-01-26 10:21:40.613 DEBUG (MainThread) [homeassistant.setup] Dependency websocket_api will wait for dependencies dict_keys(['http'])
2025-01-26 10:21:40.613 DEBUG (MainThread) [homeassistant.setup] Dependency search will wait for dependencies dict_keys(['websocket_api'])
2025-01-26 10:21:40.613 DEBUG (MainThread) [homeassistant.setup] Dependency frontend will wait for dependencies dict_keys(['api', 'auth', 'config', 'device_automation', 'diagnostics', 'file_upload', 'http', 'lovelace', 'onboarding', 'repairs', 'search', 'websocket_api'])
2025-01-26 10:21:40.624 INFO (MainThread) [homeassistant.setup] Setup of domain http took 0.01 seconds
2025-01-26 10:21:40.625 INFO (MainThread) [homeassistant.setup] Setting up auth
2025-01-26 10:21:40.626 INFO (MainThread) [homeassistant.setup] Setup of domain auth took 0.00 seconds
2025-01-26 10:21:40.626 INFO (MainThread) [homeassistant.setup] Setting up config
2025-01-26 10:21:40.628 INFO (MainThread) [homeassistant.setup] Setup of domain config took 0.00 seconds
2025-01-26 10:21:40.628 INFO (MainThread) [homeassistant.setup] Setting up diagnostics
2025-01-26 10:21:40.629 INFO (MainThread) [homeassistant.setup] Setup of domain diagnostics took 0.00 seconds
2025-01-26 10:21:40.629 INFO (MainThread) [homeassistant.setup] Setting up file_upload
2025-01-26 10:21:40.629 INFO (MainThread) [homeassistant.setup] Setup of domain file_upload took 0.00 seconds
2025-01-26 10:21:40.629 INFO (MainThread) [homeassistant.setup] Setting up repairs
2025-01-26 10:21:40.630 INFO (MainThread) [homeassistant.setup] Setup of domain repairs took 0.00 seconds
2025-01-26 10:21:40.630 INFO (MainThread) [homeassistant.setup] Setting up websocket_api
2025-01-26 10:21:40.630 INFO (MainThread) [homeassistant.setup] Setup of domain websocket_api took 0.00 seconds
2025-01-26 10:21:40.630 INFO (MainThread) [homeassistant.setup] Setting up api
2025-01-26 10:21:40.631 INFO (MainThread) [homeassistant.setup] Setup of domain api took 0.00 seconds
2025-01-26 10:21:40.631 INFO (MainThread) [homeassistant.setup] Setting up search
2025-01-26 10:21:40.631 INFO (MainThread) [homeassistant.setup] Setup of domain search took 0.00 seconds
2025-01-26 10:21:40.635 INFO (MainThread) [homeassistant.setup] Setting up image_upload
2025-01-26 10:21:40.638 INFO (MainThread) [homeassistant.setup] Setup of domain image_upload took 0.00 seconds
2025-01-26 10:21:40.639 INFO (MainThread) [homeassistant.setup] Setting up person
2025-01-26 10:21:40.640 INFO (MainThread) [homeassistant.setup] Setup of domain person took 0.00 seconds
2025-01-26 10:21:40.643 INFO (MainThread) [homeassistant.setup] Setting up onboarding
2025-01-26 10:21:40.643 INFO (MainThread) [homeassistant.setup] Setup of domain onboarding took 0.00 seconds
2025-01-26 10:21:40.643 INFO (MainThread) [homeassistant.setup] Setting up lovelace
2025-01-26 10:21:40.644 INFO (MainThread) [homeassistant.setup] Setup of domain lovelace took 0.00 seconds
2025-01-26 10:21:40.663 INFO (MainThread) [homeassistant.setup] Setting up frontend
2025-01-26 10:21:40.684 INFO (MainThread) [homeassistant.setup] Setup of domain frontend took 0.02 seconds
2025-01-26 10:21:40.688 INFO (MainThread) [homeassistant.setup] Setup of domain http took 0.00 seconds
2025-01-26 10:21:40.698 INFO (MainThread) [homeassistant.setup] Setting up recorder
2025-01-26 10:21:40.860 INFO (MainThread) [homeassistant.setup] Setup of domain recorder took 0.16 seconds
2025-01-26 10:21:40.860 INFO (MainThread) [homeassistant.setup] Setting up network
2025-01-26 10:21:40.861 INFO (MainThread) [homeassistant.setup] Setup of domain network took 0.00 seconds
2025-01-26 10:21:40.861 DEBUG (MainThread) [homeassistant.setup] Dependency zeroconf will wait for dependencies dict_keys(['network'])
2025-01-26 10:21:40.862 INFO (MainThread) [homeassistant.setup] Setting up hassio
2025-01-26 10:21:40.865 DEBUG (MainThread) [homeassistant.setup] Dependency bluetooth will wait for dependencies dict_keys(['usb'])
2025-01-26 10:21:40.865 INFO (MainThread) [homeassistant.setup] Setting up webhook
2025-01-26 10:21:40.865 INFO (MainThread) [homeassistant.setup] Setup of domain webhook took 0.00 seconds
2025-01-26 10:21:40.865 DEBUG (MainThread) [homeassistant.setup] Dependency cloud will wait for dependencies dict_keys(['webhook'])
2025-01-26 10:21:40.923 INFO (MainThread) [homeassistant.setup] Setting up zeroconf
2025-01-26 10:21:40.930 INFO (MainThread) [homeassistant.setup] Setup of domain zeroconf took 0.01 seconds
2025-01-26 10:21:41.140 INFO (MainThread) [homeassistant.setup] Setup of domain hassio took 0.28 seconds
2025-01-26 10:21:41.205 DEBUG (MainThread) [homeassistant.setup] Adding wait for wait_import_platforms for hassio (4fc2547f578d3cb7a10ba47dddc8b26c) of 0.00
2025-01-26 10:21:41.208 INFO (MainThread) [homeassistant.setup] Setting up update
2025-01-26 10:21:41.210 INFO (MainThread) [homeassistant.setup] Setup of domain update took 0.00 seconds
2025-01-26 10:21:41.210 DEBUG (MainThread) [homeassistant.setup] Adding wait for wait_base_component for hassio (4fc2547f578d3cb7a10ba47dddc8b26c) of 0.00
2025-01-26 10:21:41.685 INFO (MainThread) [homeassistant.setup] Setting up dhcp
2025-01-26 10:21:41.687 INFO (MainThread) [homeassistant.setup] Setup of domain dhcp took 0.00 seconds
2025-01-26 10:21:41.709 INFO (MainThread) [homeassistant.setup] Setting up ssdp
2025-01-26 10:21:41.712 INFO (MainThread) [homeassistant.setup] Setup of domain ssdp took 0.00 seconds
2025-01-26 10:21:41.722 INFO (MainThread) [homeassistant.setup] Setting up usb
2025-01-26 10:21:41.722 INFO (MainThread) [homeassistant.setup] Setup of domain usb took 0.00 seconds
2025-01-26 10:21:41.952 INFO (MainThread) [homeassistant.setup] Setting up cloud
2025-01-26 10:21:41.954 INFO (MainThread) [homeassistant.setup] Setting up ffmpeg
2025-01-26 10:21:41.954 INFO (MainThread) [homeassistant.setup] Setup of domain ffmpeg took 0.00 seconds
2025-01-26 10:21:41.954 DEBUG (MainThread) [homeassistant.setup] Dependency tts will wait for dependencies dict_keys(['ffmpeg'])
2025-01-26 10:21:41.955 INFO (MainThread) [homeassistant.setup] Setup of domain cloud took 0.00 seconds
2025-01-26 10:21:42.038 INFO (MainThread) [homeassistant.setup] Setting up binary_sensor
2025-01-26 10:21:42.039 INFO (MainThread) [homeassistant.setup] Setting up blueprint
2025-01-26 10:21:42.039 INFO (MainThread) [homeassistant.setup] Setup of domain blueprint took 0.00 seconds
2025-01-26 10:21:42.039 DEBUG (MainThread) [homeassistant.setup] Dependency template will wait for dependencies dict_keys(['blueprint'])
2025-01-26 10:21:42.040 INFO (MainThread) [homeassistant.setup] Setup of domain binary_sensor took 0.00 seconds
2025-01-26 10:21:42.040 DEBUG (MainThread) [homeassistant.setup] Adding wait for wait_base_component for hassio (4fc2547f578d3cb7a10ba47dddc8b26c) of 0.83
2025-01-26 10:21:42.197 INFO (MainThread) [homeassistant.setup] Setting up sensor
2025-01-26 10:21:42.198 DEBUG (MainThread) [homeassistant.setup] Phase platform_setup for websocket_api (547608679648) took 0.00s (elapsed=0.00s) (wait_time=0.00s)
2025-01-26 10:21:42.199 DEBUG (MainThread) [homeassistant.setup] Phase platform_setup for torque (547608676048) took 0.00s (elapsed=0.00s) (wait_time=0.00s)
2025-01-26 10:21:42.200 INFO (MainThread) [homeassistant.setup] Setting up modbus
2025-01-26 10:21:42.203 INFO (MainThread) [homeassistant.setup] Setup of domain modbus took 0.00 seconds
2025-01-26 10:21:42.203 DEBUG (MainThread) [homeassistant.setup] Phase platform_setup for modbus (547608679328) took 0.00s (elapsed=0.00s) (wait_time=0.00s)
2025-01-26 10:21:42.203 INFO (MainThread) [homeassistant.setup] Setup of domain sensor took 0.01 seconds
2025-01-26 10:21:42.204 DEBUG (MainThread) [homeassistant.setup] Adding wait for wait_base_component for hassio (4fc2547f578d3cb7a10ba47dddc8b26c) of 1.00
2025-01-26 10:21:42.215 DEBUG (MainThread) [homeassistant.setup] Phase platform_setup for modbus (547122907776) took 0.00s (elapsed=0.00s) (wait_time=0.00s)
2025-01-26 10:21:42.216 DEBUG (MainThread) [homeassistant.setup] Phase config_entry_setup for hassio (4fc2547f578d3cb7a10ba47dddc8b26c) took 0.08s (elapsed=1.08s) (wait_time=1.00s)
2025-01-26 10:21:42.319 INFO (MainThread) [homeassistant.setup] Setting up bluetooth
2025-01-26 10:21:42.364 INFO (MainThread) [homeassistant.setup] Setup of domain bluetooth took 0.05 seconds
2025-01-26 10:21:42.374 INFO (MainThread) [homeassistant.setup] Setting up tts
2025-01-26 10:21:42.375 DEBUG (MainThread) [homeassistant.setup] Phase platform_setup for threshold (547608807280) took 0.00s (elapsed=0.00s) (wait_time=0.00s)
2025-01-26 10:21:42.375 DEBUG (MainThread) [homeassistant.setup] Phase platform_setup for threshold (547608806960) took 0.00s (elapsed=0.00s) (wait_time=0.00s)
2025-01-26 10:21:42.376 DEBUG (MainThread) [homeassistant.setup] Phase platform_setup for threshold (547608806720) took 0.00s (elapsed=0.00s) (wait_time=0.00s)
2025-01-26 10:21:42.376 DEBUG (MainThread) [homeassistant.setup] Phase platform_setup for threshold (547608807120) took 0.00s (elapsed=0.00s) (wait_time=0.00s)
2025-01-26 10:21:42.376 DEBUG (MainThread) [homeassistant.setup] Phase platform_setup for threshold (547608807360) took 0.00s (elapsed=0.00s) (wait_time=0.00s)
2025-01-26 10:21:42.377 DEBUG (MainThread) [homeassistant.setup] Phase platform_setup for threshold (547608807600) took 0.00s (elapsed=0.00s) (wait_time=0.00s)
2025-01-26 10:21:42.377 DEBUG (MainThread) [homeassistant.setup] Phase platform_setup for threshold (547608806080) took 0.00s (elapsed=0.00s) (wait_time=0.00s)
2025-01-26 10:21:42.377 DEBUG (MainThread) [homeassistant.setup] Phase platform_setup for threshold (547608805840) took 0.00s (elapsed=0.00s) (wait_time=0.00s)
2025-01-26 10:21:42.378 DEBUG (MainThread) [homeassistant.setup] Phase platform_setup for threshold (547608806240) took 0.00s (elapsed=0.00s) (wait_time=0.00s)
2025-01-26 10:21:42.378 DEBUG (MainThread) [homeassistant.setup] Phase platform_setup for threshold (547608812960) took 0.00s (elapsed=0.00s) (wait_time=0.00s)
2025-01-26 10:21:42.378 DEBUG (MainThread) [homeassistant.setup] Phase platform_setup for threshold (547608813040) took 0.00s (elapsed=0.00s) (wait_time=0.00s)
2025-01-26 10:21:42.379 DEBUG (MainThread) [homeassistant.setup] Phase platform_setup for threshold (547608805520) took 0.00s (elapsed=0.00s) (wait_time=0.00s)
2025-01-26 10:21:42.379 DEBUG (MainThread) [homeassistant.setup] Phase platform_setup for threshold (547608821600) took 0.00s (elapsed=0.00s) (wait_time=0.00s)
2025-01-26 10:21:42.380 DEBUG (MainThread) [homeassistant.setup] Phase platform_setup for threshold (547608821360) took 0.00s (elapsed=0.00s) (wait_time=0.00s)
2025-01-26 10:21:42.380 DEBUG (MainThread) [homeassistant.setup] Phase platform_setup for threshold (547608820560) took 0.00s (elapsed=0.00s) (wait_time=0.00s)
2025-01-26 10:21:42.381 DEBUG (MainThread) [homeassistant.setup] Phase platform_setup for threshold (547608820320) took 0.00s (elapsed=0.00s) (wait_time=0.00s)
2025-01-26 10:21:42.381 DEBUG (MainThread) [homeassistant.setup] Phase platform_setup for threshold (547608819920) took 0.00s (elapsed=0.00s) (wait_time=0.00s)
2025-01-26 10:21:42.381 DEBUG (MainThread) [homeassistant.setup] Phase platform_setup for threshold (547608819680) took 0.00s (elapsed=0.00s) (wait_time=0.00s)
2025-01-26 10:21:42.382 DEBUG (MainThread) [homeassistant.setup] Phase platform_setup for threshold (547608819440) took 0.00s (elapsed=0.00s) (wait_time=0.00s)
2025-01-26 10:21:42.382 DEBUG (MainThread) [homeassistant.setup] Phase platform_setup for threshold (547608819200) took 0.00s (elapsed=0.00s) (wait_time=0.00s)
2025-01-26 10:21:42.382 DEBUG (MainThread) [homeassistant.setup] Phase platform_setup for threshold (547608818960) took 0.00s (elapsed=0.00s) (wait_time=0.00s)
2025-01-26 10:21:42.383 DEBUG (MainThread) [homeassistant.setup] Phase platform_setup for threshold (547608818720) took 0.00s (elapsed=0.00s) (wait_time=0.00s)
2025-01-26 10:21:42.383 DEBUG (MainThread) [homeassistant.setup] Phase platform_setup for threshold (547608818480) took 0.00s (elapsed=0.00s) (wait_time=0.00s)
2025-01-26 10:21:42.383 DEBUG (MainThread) [homeassistant.setup] Phase platform_setup for threshold (547608818240) took 0.00s (elapsed=0.00s) (wait_time=0.00s)
2025-01-26 10:21:42.384 DEBUG (MainThread) [homeassistant.setup] Phase platform_setup for threshold (547608818000) took 0.00s (elapsed=0.00s) (wait_time=0.00s)
2025-01-26 10:21:42.384 DEBUG (MainThread) [homeassistant.setup] Phase platform_setup for threshold (547608817760) took 0.00s (elapsed=0.00s) (wait_time=0.00s)
2025-01-26 10:21:42.384 DEBUG (MainThread) [homeassistant.setup] Phase platform_setup for threshold (547608817520) took 0.00s (elapsed=0.00s) (wait_time=0.00s)
2025-01-26 10:21:42.384 DEBUG (MainThread) [homeassistant.setup] Phase platform_setup for threshold (547608817280) took 0.00s (elapsed=0.00s) (wait_time=0.00s)
2025-01-26 10:21:42.385 DEBUG (MainThread) [homeassistant.setup] Phase platform_setup for threshold (547608817040) took 0.00s (elapsed=0.00s) (wait_time=0.00s)
2025-01-26 10:21:42.385 DEBUG (MainThread) [homeassistant.setup] Phase platform_setup for threshold (547608816800) took 0.00s (elapsed=0.00s) (wait_time=0.00s)
2025-01-26 10:21:42.385 DEBUG (MainThread) [homeassistant.setup] Phase platform_setup for threshold (547608816560) took 0.00s (elapsed=0.00s) (wait_time=0.00s)
2025-01-26 10:21:42.386 DEBUG (MainThread) [homeassistant.setup] Phase platform_setup for threshold (547608816320) took 0.00s (elapsed=0.00s) (wait_time=0.00s)
2025-01-26 10:21:42.386 DEBUG (MainThread) [homeassistant.setup] Phase platform_setup for threshold (547608816080) took 0.00s (elapsed=0.00s) (wait_time=0.00s)
2025-01-26 10:21:42.386 DEBUG (MainThread) [homeassistant.setup] Phase platform_setup for threshold (547608820080) took 0.00s (elapsed=0.00s) (wait_time=0.00s)
2025-01-26 10:21:42.387 DEBUG (MainThread) [homeassistant.setup] Phase platform_setup for threshold (547608815760) took 0.00s (elapsed=0.00s) (wait_time=0.00s)
2025-01-26 10:21:42.387 DEBUG (MainThread) [homeassistant.setup] Phase platform_setup for threshold (547608815520) took 0.00s (elapsed=0.00s) (wait_time=0.00s)
2025-01-26 10:21:42.387 DEBUG (MainThread) [homeassistant.setup] Phase platform_setup for threshold (547608815120) took 0.00s (elapsed=0.00s) (wait_time=0.00s)
2025-01-26 10:21:42.388 DEBUG (MainThread) [homeassistant.setup] Phase platform_setup for threshold (547608814880) took 0.00s (elapsed=0.00s) (wait_time=0.00s)
2025-01-26 10:21:42.388 DEBUG (MainThread) [homeassistant.setup] Phase platform_setup for threshold (547608814480) took 0.00s (elapsed=0.00s) (wait_time=0.00s)
2025-01-26 10:21:42.388 DEBUG (MainThread) [homeassistant.setup] Phase platform_setup for threshold (547608814400) took 0.00s (elapsed=0.00s) (wait_time=0.00s)
2025-01-26 10:21:42.388 DEBUG (MainThread) [homeassistant.setup] Phase platform_setup for threshold (547608814960) took 0.00s (elapsed=0.00s) (wait_time=0.00s)
2025-01-26 10:21:42.389 DEBUG (MainThread) [homeassistant.setup] Phase platform_setup for threshold (547608815360) took 0.00s (elapsed=0.00s) (wait_time=0.00s)
2025-01-26 10:21:42.389 DEBUG (MainThread) [homeassistant.setup] Phase platform_setup for threshold (547608813840) took 0.00s (elapsed=0.00s) (wait_time=0.00s)
2025-01-26 10:21:42.389 DEBUG (MainThread) [homeassistant.setup] Phase platform_setup for threshold (547608813520) took 0.00s (elapsed=0.00s) (wait_time=0.00s)
2025-01-26 10:21:42.390 DEBUG (MainThread) [homeassistant.setup] Phase platform_setup for threshold (547499100976) took 0.00s (elapsed=0.00s) (wait_time=0.00s)
2025-01-26 10:21:42.391 DEBUG (MainThread) [homeassistant.setup] Phase platform_setup for threshold (547608683568) took 0.00s (elapsed=0.00s) (wait_time=0.00s)
2025-01-26 10:21:42.391 DEBUG (MainThread) [homeassistant.setup] Phase platform_setup for threshold (547608683008) took 0.00s (elapsed=0.00s) (wait_time=0.00s)
2025-01-26 10:21:42.391 DEBUG (MainThread) [homeassistant.setup] Phase platform_setup for threshold (547608682688) took 0.00s (elapsed=0.00s) (wait_time=0.00s)
2025-01-26 10:21:42.391 DEBUG (MainThread) [homeassistant.setup] Phase platform_setup for threshold (547608682208) took 0.00s (elapsed=0.00s) (wait_time=0.00s)
2025-01-26 10:21:42.392 DEBUG (MainThread) [homeassistant.setup] Phase platform_setup for threshold (547608682448) took 0.00s (elapsed=0.00s) (wait_time=0.00s)
2025-01-26 10:21:42.392 DEBUG (MainThread) [homeassistant.setup] Phase platform_setup for threshold (547608681888) took 0.00s (elapsed=0.00s) (wait_time=0.00s)
2025-01-26 10:21:42.392 DEBUG (MainThread) [homeassistant.setup] Phase platform_setup for threshold (547608681488) took 0.00s (elapsed=0.00s) (wait_time=0.00s)
2025-01-26 10:21:42.393 DEBUG (MainThread) [homeassistant.setup] Phase platform_setup for threshold (547608680768) took 0.00s (elapsed=0.00s) (wait_time=0.00s)
2025-01-26 10:21:42.393 DEBUG (MainThread) [homeassistant.setup] Phase platform_setup for threshold (547608680528) took 0.00s (elapsed=0.00s) (wait_time=0.00s)
2025-01-26 10:21:42.393 DEBUG (MainThread) [homeassistant.setup] Phase platform_setup for threshold (547608680928) took 0.00s (elapsed=0.00s) (wait_time=0.00s)
2025-01-26 10:21:42.393 DEBUG (MainThread) [homeassistant.setup] Phase platform_setup for threshold (547608680208) took 0.00s (elapsed=0.00s) (wait_time=0.00s)
2025-01-26 10:21:42.394 DEBUG (MainThread) [homeassistant.setup] Phase platform_setup for threshold (547608679968) took 0.00s (elapsed=0.00s) (wait_time=0.00s)
2025-01-26 10:21:42.400 DEBUG (MainThread) [homeassistant.setup] Phase config_entry_setup for bluetooth (5748644d1aeed31dfe0563d30efb9af4) took 0.04s (elapsed=0.04s) (wait_time=0.00s)
2025-01-26 10:21:42.405 INFO (MainThread) [homeassistant.setup] Setting up select
2025-01-26 10:21:42.406 INFO (MainThread) [homeassistant.setup] Setup of domain select took 0.00 seconds
2025-01-26 10:21:42.406 INFO (MainThread) [homeassistant.setup] Setting up stt
2025-01-26 10:21:42.407 INFO (MainThread) [homeassistant.setup] Setup of domain stt took 0.00 seconds
2025-01-26 10:21:42.408 INFO (MainThread) [homeassistant.setup] Setting up number
2025-01-26 10:21:42.408 INFO (MainThread) [homeassistant.setup] Setup of domain number took 0.00 seconds
2025-01-26 10:21:42.409 INFO (MainThread) [homeassistant.setup] Setting up climate
2025-01-26 10:21:42.411 INFO (MainThread) [homeassistant.setup] Setup of domain climate took 0.00 seconds
2025-01-26 10:21:42.413 INFO (MainThread) [homeassistant.setup] Setting up scene
2025-01-26 10:21:42.415 DEBUG (MainThread) [homeassistant.setup] Phase platform_setup for homeassistant (547099701120) took 0.00s (elapsed=0.00s) (wait_time=0.00s)
2025-01-26 10:21:42.416 DEBUG (MainThread) [homeassistant.setup] Phase platform_setup for homeassistant (547099702464) took 0.00s (elapsed=0.00s) (wait_time=0.00s)
2025-01-26 10:21:42.416 DEBUG (MainThread) [homeassistant.setup] Phase platform_setup for homeassistant (547099704064) took 0.00s (elapsed=0.00s) (wait_time=0.00s)
2025-01-26 10:21:42.417 DEBUG (MainThread) [homeassistant.setup] Phase platform_setup for homeassistant (547099754880) took 0.00s (elapsed=0.00s) (wait_time=0.00s)
2025-01-26 10:21:42.417 DEBUG (MainThread) [homeassistant.setup] Phase platform_setup for homeassistant (547099757760) took 0.00s (elapsed=0.00s) (wait_time=0.00s)
2025-01-26 10:21:42.417 DEBUG (MainThread) [homeassistant.setup] Phase platform_setup for homeassistant (547099759424) took 0.00s (elapsed=0.00s) (wait_time=0.00s)
2025-01-26 10:21:42.417 DEBUG (MainThread) [homeassistant.setup] Phase platform_setup for homeassistant (547099763200) took 0.00s (elapsed=0.00s) (wait_time=0.00s)
2025-01-26 10:21:42.418 DEBUG (MainThread) [homeassistant.setup] Phase platform_setup for homeassistant (547099768960) took 0.00s (elapsed=0.00s) (wait_time=0.00s)
2025-01-26 10:21:42.418 DEBUG (MainThread) [homeassistant.setup] Phase platform_setup for homeassistant (547099872768) took 0.00s (elapsed=0.00s) (wait_time=0.00s)
2025-01-26 10:21:42.418 INFO (MainThread) [homeassistant.setup] Setup of domain scene took 0.01 seconds
2025-01-26 10:21:42.420 INFO (MainThread) [homeassistant.setup] Setting up wake_word
2025-01-26 10:21:42.420 INFO (MainThread) [homeassistant.setup] Setup of domain wake_word took 0.00 seconds
2025-01-26 10:21:42.420 DEBUG (MainThread) [homeassistant.setup] Dependency switch will wait for after dependencies dict_keys(['switch_as_x'])
2025-01-26 10:21:42.421 INFO (MainThread) [homeassistant.setup] Setting up zone
2025-01-26 10:21:42.421 DEBUG (MainThread) [homeassistant.setup] Dependency device_tracker will wait for dependencies dict_keys(['zone'])
2025-01-26 10:21:42.422 INFO (MainThread) [homeassistant.setup] Setting up media_player
2025-01-26 10:21:42.423 INFO (MainThread) [homeassistant.setup] Setting up group
2025-01-26 10:21:42.424 INFO (MainThread) [homeassistant.setup] Setup of domain group took 0.00 seconds
2025-01-26 10:21:42.424 DEBUG (MainThread) [homeassistant.setup] Adding wait for wait_import_platforms for group (50dad3762971691f48f10a9e24f32a19) of 0.00
2025-01-26 10:21:42.425 DEBUG (MainThread) [homeassistant.setup] Phase config_entry_setup for group (50dad3762971691f48f10a9e24f32a19) took 0.00s (elapsed=0.00s) (wait_time=0.00s)
2025-01-26 10:21:42.426 DEBUG (MainThread) [homeassistant.setup] Phase platform_setup for group (547100615808) took 0.00s (elapsed=0.00s) (wait_time=0.00s)
2025-01-26 10:21:42.428 INFO (MainThread) [homeassistant.setup] Setup of domain media_player took 0.01 seconds
2025-01-26 10:21:42.428 DEBUG (MainThread) [homeassistant.setup] Dependency conversation will wait for dependencies dict_keys(['intent'])
2025-01-26 10:21:42.429 INFO (MainThread) [homeassistant.setup] Setting up camera
2025-01-26 10:21:42.430 INFO (MainThread) [homeassistant.setup] Setup of domain camera took 0.00 seconds
2025-01-26 10:21:42.430 DEBUG (MainThread) [homeassistant.setup] Dependency plant will wait for after dependencies dict_keys(['openplantbook'])
2025-01-26 10:21:42.430 INFO (MainThread) [homeassistant.setup] Setting up trace
2025-01-26 10:21:42.430 INFO (MainThread) [homeassistant.setup] Setup of domain trace took 0.00 seconds
2025-01-26 10:21:42.431 DEBUG (MainThread) [homeassistant.setup] Dependency script will wait for dependencies dict_keys(['trace'])
2025-01-26 10:21:42.517 INFO (MainThread) [homeassistant.setup] Setting up script
2025-01-26 10:21:42.528 INFO (MainThread) [homeassistant.setup] Setup of domain script took 0.01 seconds
2025-01-26 10:21:42.529 DEBUG (MainThread) [homeassistant.setup] Dependency analytics will wait for after dependencies dict_keys(['energy'])
2025-01-26 10:21:42.529 DEBUG (MainThread) [homeassistant.setup] Dependency google will wait for dependencies dict_keys(['application_credentials'])
2025-01-26 10:21:42.529 DEBUG (MainThread) [homeassistant.setup] Dependency spotify will wait for dependencies dict_keys(['application_credentials'])
2025-01-26 10:21:42.529 DEBUG (MainThread) [homeassistant.setup] Dependency spotcast will wait for dependencies dict_keys(['spotify'])
2025-01-26 10:21:42.529 DEBUG (MainThread) [homeassistant.setup] Dependency spotcast will wait for after dependencies dict_keys(['cast'])
2025-01-26 10:21:42.529 INFO (MainThread) [homeassistant.setup] Setting up system_health
2025-01-26 10:21:42.530 INFO (MainThread) [homeassistant.setup] Setup of domain system_health took 0.00 seconds
2025-01-26 10:21:42.530 INFO (MainThread) [homeassistant.setup] Setting up input_number
2025-01-26 10:21:42.531 DEBUG (MainThread) [homeassistant.setup] Dependency bluetooth_adapters will wait for after dependencies dict_keys(['esphome'])
2025-01-26 10:21:42.531 DEBUG (MainThread) [homeassistant.setup] Dependency mobile_app will wait for dependencies dict_keys(['intent', 'tag'])
2025-01-26 10:21:42.531 DEBUG (MainThread) [homeassistant.setup] Dependency mobile_app will wait for after dependencies dict_keys(['conversation', 'notify'])
2025-01-26 10:21:42.531 DEBUG (MainThread) [homeassistant.setup] Dependency google_photos will wait for dependencies dict_keys(['application_credentials'])
2025-01-26 10:21:42.531 INFO (MainThread) [homeassistant.setup] Setting up history
2025-01-26 10:21:42.532 INFO (MainThread) [homeassistant.setup] Setup of domain history took 0.00 seconds
2025-01-26 10:21:42.532 DEBUG (MainThread) [homeassistant.setup] Dependency openplantbook will wait for dependencies dict_keys(['history'])
2025-01-26 10:21:42.532 INFO (MainThread) [homeassistant.setup] Setting up panel_custom
2025-01-26 10:21:42.532 INFO (MainThread) [homeassistant.setup] Setup of domain panel_custom took 0.00 seconds
2025-01-26 10:21:42.532 DEBUG (MainThread) [homeassistant.setup] Dependency browser_mod will wait for dependencies dict_keys(['panel_custom'])
2025-01-26 10:21:42.532 DEBUG (MainThread) [homeassistant.setup] Dependency spotifyplus will wait for dependencies dict_keys(['application_credentials'])
2025-01-26 10:21:42.532 INFO (MainThread) [homeassistant.setup] Setting up stream
2025-01-26 10:21:42.533 DEBUG (MainThread) [homeassistant.setup] Dependency generic will wait for dependencies dict_keys(['stream'])
2025-01-26 10:21:42.533 INFO (MainThread) [homeassistant.setup] Setting up timer
2025-01-26 10:21:42.535 INFO (MainThread) [homeassistant.setup] Setup of domain timer took 0.00 seconds
2025-01-26 10:21:42.536 INFO (MainThread) [homeassistant.setup] Setting up input_select
2025-01-26 10:21:42.536 DEBUG (MainThread) [homeassistant.setup] Dependency places will wait for after dependencies dict_keys(['device_tracker', 'mobile_app', 'zone'])
2025-01-26 10:21:42.536 INFO (MainThread) [homeassistant.setup] Setting up backup
2025-01-26 10:21:42.540 INFO (MainThread) [homeassistant.setup] Setup of domain backup took 0.00 seconds
2025-01-26 10:21:42.540 DEBUG (MainThread) [homeassistant.setup] Dependency tapo_control will wait for dependencies dict_keys(['onvif'])
2025-01-26 10:21:42.540 DEBUG (MainThread) [homeassistant.setup] Dependency ibeacon will wait for dependencies dict_keys(['bluetooth_adapters'])
2025-01-26 10:21:42.541 DEBUG (MainThread) [homeassistant.setup] Dependency assist_pipeline will wait for dependencies dict_keys(['conversation', 'tts'])
2025-01-26 10:21:42.541 INFO (MainThread) [homeassistant.setup] Setting up logbook
2025-01-26 10:21:42.543 INFO (MainThread) [homeassistant.setup] Setup of domain logbook took 0.00 seconds
2025-01-26 10:21:42.543 INFO (MainThread) [homeassistant.setup] Setting up media_source
2025-01-26 10:21:42.543 INFO (MainThread) [homeassistant.setup] Setup of domain media_source took 0.00 seconds
2025-01-26 10:21:42.544 DEBUG (MainThread) [homeassistant.setup] Dependency default_config will wait for dependencies dict_keys(['assist_pipeline', 'conversation', 'energy', 'go2rtc', 'homeassistant_alerts', 'logbook', 'media_source', 'mobile_app', 'my', 'stream', 'sun'])
2025-01-26 10:21:42.544 DEBUG (MainThread) [homeassistant.setup] Dependency homeassistant_hardware will wait for after dependencies dict_keys(['zha'])
2025-01-26 10:21:42.544 DEBUG (MainThread) [homeassistant.setup] Dependency spook will wait for dependencies dict_keys(['input_number', 'input_select', 'zone'])
2025-01-26 10:21:42.544 DEBUG (MainThread) [homeassistant.setup] Dependency spook will wait for after dependencies dict_keys(['proximity'])
2025-01-26 10:21:42.544 DEBUG (MainThread) [homeassistant.setup] Dependency tasmota will wait for dependencies dict_keys(['mqtt'])
2025-01-26 10:21:42.544 DEBUG (MainThread) [homeassistant.setup] Dependency ios will wait for dependencies dict_keys(['device_tracker'])
2025-01-26 10:21:42.546 DEBUG (MainThread) [homeassistant.setup] Dependency xiaomi_ble will wait for dependencies dict_keys(['bluetooth_adapters'])
2025-01-26 10:21:42.546 DEBUG (MainThread) [homeassistant.setup] Dependency fully_kiosk will wait for after dependencies dict_keys(['mqtt'])
2025-01-26 10:21:42.546 DEBUG (MainThread) [homeassistant.setup] Dependency nest will wait for dependencies dict_keys(['application_credentials'])
2025-01-26 10:21:42.546 DEBUG (MainThread) [homeassistant.setup] Dependency homeassistant_yellow will wait for dependencies dict_keys(['hardware', 'homeassistant_hardware'])
2025-01-26 10:21:42.547 DEBUG (MainThread) [homeassistant.setup] Dependency proximity will wait for dependencies dict_keys(['device_tracker', 'zone'])
2025-01-26 10:21:42.547 INFO (MainThread) [homeassistant.setup] Setting up input_button
2025-01-26 10:21:42.548 INFO (MainThread) [homeassistant.setup] Setting up input_boolean
2025-01-26 10:21:42.549 DEBUG (MainThread) [homeassistant.setup] Dependency cast will wait for after dependencies dict_keys(['tts'])
2025-01-26 10:21:42.550 INFO (MainThread) [homeassistant.setup] Setting up google_assistant
2025-01-26 10:21:42.551 INFO (MainThread) [homeassistant.setup] Setup of domain google_assistant took 0.00 seconds
2025-01-26 10:21:42.555 DEBUG (MainThread) [homeassistant.setup] Dependency esphome will wait for dependencies dict_keys(['assist_pipeline', 'intent'])
2025-01-26 10:21:42.555 DEBUG (MainThread) [homeassistant.setup] Dependency esphome will wait for after dependencies dict_keys(['tag'])
2025-01-26 10:21:42.618 INFO (MainThread) [homeassistant.setup] Setup of domain zone took 0.20 seconds
2025-01-26 10:21:42.619 INFO (MainThread) [homeassistant.setup] Setup of domain input_select took 0.08 seconds
2025-01-26 10:21:42.621 INFO (MainThread) [homeassistant.setup] Setup of domain input_button took 0.07 seconds
2025-01-26 10:21:42.629 INFO (MainThread) [homeassistant.setup] Setting up device_tracker
2025-01-26 10:21:42.629 INFO (MainThread) [homeassistant.setup] Setup of domain device_tracker took 0.00 seconds
2025-01-26 10:21:42.630 INFO (MainThread) [homeassistant.setup] Setup of domain tts took 0.26 seconds
2025-01-26 10:21:42.634 INFO (MainThread) [homeassistant.setup] Setup of domain input_number took 0.10 seconds
2025-01-26 10:21:42.635 INFO (MainThread) [homeassistant.setup] Setup of domain input_boolean took 0.09 seconds
2025-01-26 10:21:42.698 DEBUG (MainThread) [homeassistant.setup] Adding wait for wait_import_packages for stream (None) of 0.17
2025-01-26 10:21:42.700 INFO (MainThread) [homeassistant.setup] Setup of domain stream took 0.17 seconds
2025-01-26 10:21:42.986 INFO (MainThread) [homeassistant.setup] Setting up template
2025-01-26 10:21:42.986 INFO (MainThread) [homeassistant.setup] Setup of domain template took 0.00 seconds
2025-01-26 10:21:42.998 DEBUG (MainThread) [homeassistant.setup] Phase platform_setup for template (547608820720) took 0.01s (elapsed=0.01s) (wait_time=0.00s)
2025-01-26 10:21:43.000 DEBUG (MainThread) [homeassistant.setup] Phase platform_setup for template (547499101456) took 0.00s (elapsed=0.00s) (wait_time=0.00s)
2025-01-26 10:21:43.002 DEBUG (MainThread) [homeassistant.setup] Phase platform_setup for template (547499102416) took 0.00s (elapsed=0.00s) (wait_time=0.00s)
2025-01-26 10:21:43.003 DEBUG (MainThread) [homeassistant.setup] Phase platform_setup for template (547499103376) took 0.00s (elapsed=0.00s) (wait_time=0.00s)
2025-01-26 10:21:43.003 DEBUG (MainThread) [homeassistant.setup] Phase platform_setup for template (547608681728) took 0.00s (elapsed=0.00s) (wait_time=0.00s)
2025-01-26 10:21:43.005 DEBUG (MainThread) [homeassistant.setup] Phase platform_setup for template (547608681168) took 0.00s (elapsed=0.00s) (wait_time=0.00s)
2025-01-26 10:21:43.010 DEBUG (MainThread) [homeassistant.setup] Phase platform_setup for template (547608675408) took 0.01s (elapsed=0.01s) (wait_time=0.00s)
2025-01-26 10:21:43.011 DEBUG (MainThread) [homeassistant.setup] Phase platform_setup for template (547608689088) took 0.00s (elapsed=0.00s) (wait_time=0.00s)
2025-01-26 10:21:43.020 DEBUG (MainThread) [homeassistant.setup] Phase platform_setup for template (547608688848) took 0.01s (elapsed=0.01s) (wait_time=0.00s)
2025-01-26 10:21:43.030 DEBUG (MainThread) [homeassistant.setup] Phase platform_setup for tod (547608683728) took 0.00s (elapsed=0.00s) (wait_time=0.00s)
2025-01-26 10:21:43.040 INFO (MainThread) [homeassistant.setup] Setting up waste_collection_schedule
2025-01-26 10:21:43.118 INFO (MainThread) [homeassistant.setup] Setting up notify
2025-01-26 10:21:43.119 INFO (MainThread) [homeassistant.setup] Setup of domain notify took 0.00 seconds
2025-01-26 10:21:43.126 INFO (MainThread) [homeassistant.setup] Setting up light
2025-01-26 10:21:43.126 DEBUG (MainThread) [homeassistant.setup] Dependency switch will wait for after dependencies dict_keys(['switch_as_x'])
2025-01-26 10:21:43.126 DEBUG (MainThread) [homeassistant.setup] Dependency switch will wait for after dependencies dict_keys(['switch_as_x'])
2025-01-26 10:21:43.126 DEBUG (MainThread) [homeassistant.setup] Dependency switch will wait for after dependencies dict_keys(['switch_as_x'])
2025-01-26 10:21:43.126 DEBUG (MainThread) [homeassistant.setup] Dependency switch will wait for after dependencies dict_keys(['switch_as_x'])
2025-01-26 10:21:43.126 DEBUG (MainThread) [homeassistant.setup] Dependency switch will wait for after dependencies dict_keys(['switch_as_x'])
2025-01-26 10:21:43.127 DEBUG (MainThread) [homeassistant.setup] Dependency switch will wait for after dependencies dict_keys(['switch_as_x'])
2025-01-26 10:21:43.127 DEBUG (MainThread) [homeassistant.setup] Dependency switch will wait for after dependencies dict_keys(['switch_as_x'])
2025-01-26 10:21:43.127 DEBUG (MainThread) [homeassistant.setup] Dependency switch will wait for after dependencies dict_keys(['switch_as_x'])
2025-01-26 10:21:43.127 DEBUG (MainThread) [homeassistant.setup] Dependency switch will wait for after dependencies dict_keys(['switch_as_x'])
2025-01-26 10:21:43.127 DEBUG (MainThread) [homeassistant.setup] Dependency switch will wait for after dependencies dict_keys(['switch_as_x'])
2025-01-26 10:21:43.127 DEBUG (MainThread) [homeassistant.setup] Dependency switch will wait for after dependencies dict_keys(['switch_as_x'])
2025-01-26 10:21:43.127 DEBUG (MainThread) [homeassistant.setup] Dependency switch will wait for after dependencies dict_keys(['switch_as_x'])
2025-01-26 10:21:43.127 DEBUG (MainThread) [homeassistant.setup] Dependency switch will wait for after dependencies dict_keys(['switch_as_x'])
2025-01-26 10:21:43.127 DEBUG (MainThread) [homeassistant.setup] Dependency switch will wait for after dependencies dict_keys(['switch_as_x'])
2025-01-26 10:21:43.127 DEBUG (MainThread) [homeassistant.setup] Dependency switch will wait for after dependencies dict_keys(['switch_as_x'])
2025-01-26 10:21:43.127 DEBUG (MainThread) [homeassistant.setup] Dependency switch will wait for after dependencies dict_keys(['switch_as_x'])
2025-01-26 10:21:43.127 DEBUG (MainThread) [homeassistant.setup] Dependency switch will wait for after dependencies dict_keys(['switch_as_x'])
2025-01-26 10:21:43.127 DEBUG (MainThread) [homeassistant.setup] Dependency switch will wait for after dependencies dict_keys(['switch_as_x'])
2025-01-26 10:21:43.127 DEBUG (MainThread) [homeassistant.setup] Dependency switch will wait for after dependencies dict_keys(['switch_as_x'])
2025-01-26 10:21:43.127 DEBUG (MainThread) [homeassistant.setup] Dependency switch will wait for after dependencies dict_keys(['switch_as_x'])
2025-01-26 10:21:43.127 DEBUG (MainThread) [homeassistant.setup] Dependency switch will wait for after dependencies dict_keys(['switch_as_x'])
2025-01-26 10:21:43.127 DEBUG (MainThread) [homeassistant.setup] Dependency switch will wait for after dependencies dict_keys(['switch_as_x'])
2025-01-26 10:21:43.127 DEBUG (MainThread) [homeassistant.setup] Dependency switch will wait for after dependencies dict_keys(['switch_as_x'])
2025-01-26 10:21:43.127 DEBUG (MainThread) [homeassistant.setup] Dependency switch will wait for after dependencies dict_keys(['switch_as_x'])
2025-01-26 10:21:43.128 DEBUG (MainThread) [homeassistant.setup] Phase platform_setup for group (547100472112) took 0.00s (elapsed=0.00s) (wait_time=0.00s)
2025-01-26 10:21:43.129 DEBUG (MainThread) [homeassistant.setup] Phase platform_setup for group (547100472192) took 0.00s (elapsed=0.00s) (wait_time=0.00s)
2025-01-26 10:21:43.130 DEBUG (MainThread) [homeassistant.setup] Phase platform_setup for group (547100472272) took 0.00s (elapsed=0.00s) (wait_time=0.00s)
2025-01-26 10:21:43.130 DEBUG (MainThread) [homeassistant.setup] Phase platform_setup for group (547100473152) took 0.00s (elapsed=0.00s) (wait_time=0.00s)
2025-01-26 10:21:43.130 DEBUG (MainThread) [homeassistant.setup] Phase platform_setup for group (547100474592) took 0.00s (elapsed=0.00s) (wait_time=0.00s)
2025-01-26 10:21:43.134 INFO (MainThread) [homeassistant.setup] Setup of domain light took 0.01 seconds
2025-01-26 10:21:43.164 INFO (MainThread) [homeassistant.setup] Setting up intent
2025-01-26 10:21:43.165 INFO (MainThread) [homeassistant.setup] Setup of domain intent took 0.00 seconds
2025-01-26 10:21:43.165 INFO (MainThread) [homeassistant.setup] Setting up conversation
2025-01-26 10:21:43.166 INFO (MainThread) [homeassistant.setup] Setup of domain conversation took 0.00 seconds
2025-01-26 10:21:43.169 INFO (MainThread) [homeassistant.setup] Setting up assist_pipeline
2025-01-26 10:21:43.170 INFO (MainThread) [homeassistant.setup] Setup of domain assist_pipeline took 0.00 seconds
2025-01-26 10:21:43.174 INFO (MainThread) [homeassistant.setup] Setting up counter
2025-01-26 10:21:43.176 INFO (MainThread) [homeassistant.setup] Setup of domain counter took 0.00 seconds
2025-01-26 10:21:43.522 INFO (MainThread) [homeassistant.setup] Setting up calendar
2025-01-26 10:21:43.524 INFO (MainThread) [homeassistant.setup] Setup of domain calendar took 0.00 seconds
2025-01-26 10:21:43.526 INFO (MainThread) [homeassistant.setup] Setup of domain waste_collection_schedule took 0.49 seconds
2025-01-26 10:21:43.528 DEBUG (MainThread) [homeassistant.setup] Phase platform_setup for waste_collection_schedule (547608674368) took 0.00s (elapsed=0.00s) (wait_time=0.00s)
2025-01-26 10:21:43.528 DEBUG (MainThread) [homeassistant.setup] Phase platform_setup for waste_collection_schedule (547608689808) took 0.00s (elapsed=0.00s) (wait_time=0.00s)
2025-01-26 10:21:43.529 DEBUG (MainThread) [homeassistant.setup] Phase platform_setup for waste_collection_schedule (547608689568) took 0.00s (elapsed=0.00s) (wait_time=0.00s)
2025-01-26 10:21:43.529 DEBUG (MainThread) [homeassistant.setup] Phase platform_setup for waste_collection_schedule (547608689328) took 0.00s (elapsed=0.00s) (wait_time=0.00s)
2025-01-26 10:21:43.814 INFO (MainThread) [homeassistant.setup] Setting up garmin_connect
2025-01-26 10:21:43.814 INFO (MainThread) [homeassistant.setup] Setup of domain garmin_connect took 0.00 seconds
2025-01-26 10:21:43.817 INFO (MainThread) [homeassistant.setup] Setting up nfandroidtv
2025-01-26 10:21:43.818 INFO (MainThread) [homeassistant.setup] Setup of domain nfandroidtv took 0.00 seconds
2025-01-26 10:21:43.831 INFO (MainThread) [homeassistant.setup] Setting up application_credentials
2025-01-26 10:21:43.832 INFO (MainThread) [homeassistant.setup] Setup of domain application_credentials took 0.00 seconds
2025-01-26 10:21:43.835 DEBUG (MainThread) [homeassistant.setup] Phase config_entry_setup for nfandroidtv (01JHPQ52284CNPCWS5E2RJ3RCR) took 0.02s (elapsed=0.02s) (wait_time=0.00s)
2025-01-26 10:21:43.842 INFO (MainThread) [homeassistant.setup] Setting up nmap_tracker
2025-01-26 10:21:43.842 INFO (MainThread) [homeassistant.setup] Setup of domain nmap_tracker took 0.00 seconds
2025-01-26 10:21:43.857 INFO (MainThread) [homeassistant.setup] Setting up waqi
2025-01-26 10:21:43.857 INFO (MainThread) [homeassistant.setup] Setup of domain waqi took 0.00 seconds
2025-01-26 10:21:44.039 INFO (MainThread) [homeassistant.setup] Setting up xiaomi_miio
2025-01-26 10:21:44.040 INFO (MainThread) [homeassistant.setup] Setup of domain xiaomi_miio took 0.00 seconds
2025-01-26 10:21:44.064 INFO (MainThread) [homeassistant.setup] Setting up systemmonitor
2025-01-26 10:21:44.064 INFO (MainThread) [homeassistant.setup] Setup of domain systemmonitor took 0.00 seconds
2025-01-26 10:21:44.077 INFO (MainThread) [homeassistant.setup] Setting up watchman
2025-01-26 10:21:44.077 INFO (MainThread) [homeassistant.setup] Setup of domain watchman took 0.00 seconds
2025-01-26 10:21:44.226 INFO (MainThread) [homeassistant.setup] Setting up media_extractor
2025-01-26 10:21:44.228 INFO (MainThread) [homeassistant.setup] Setup of domain media_extractor took 0.00 seconds
2025-01-26 10:21:44.228 DEBUG (MainThread) [homeassistant.setup] Phase config_entry_setup for media_extractor (01JDGCJZQHY3A2GYJWQMVPHA3J) took 0.00s (elapsed=0.00s) (wait_time=0.00s)
2025-01-26 10:21:44.244 INFO (MainThread) [homeassistant.setup] Setting up echonetlite
2025-01-26 10:21:44.244 INFO (MainThread) [homeassistant.setup] Setup of domain echonetlite took 0.00 seconds
2025-01-26 10:21:44.251 INFO (MainThread) [homeassistant.setup] Setting up ps4
2025-01-26 10:21:44.251 INFO (MainThread) [homeassistant.setup] Setup of domain ps4 took 0.00 seconds
2025-01-26 10:21:44.254 INFO (MainThread) [homeassistant.setup] Setting up tag
2025-01-26 10:21:44.266 INFO (MainThread) [homeassistant.setup] Setup of domain tag took 0.01 seconds
2025-01-26 10:21:44.316 INFO (MainThread) [homeassistant.setup] Setting up hacs
2025-01-26 10:21:44.316 INFO (MainThread) [homeassistant.setup] Setup of domain hacs took 0.00 seconds
2025-01-26 10:21:44.437 INFO (MainThread) [homeassistant.setup] Setting up bmw_connected_drive
2025-01-26 10:21:44.437 INFO (MainThread) [homeassistant.setup] Setup of domain bmw_connected_drive took 0.00 seconds
2025-01-26 10:21:44.462 INFO (MainThread) [homeassistant.setup] Setting up mqtt
2025-01-26 10:21:44.462 INFO (MainThread) [homeassistant.setup] Setup of domain mqtt took 0.00 seconds
2025-01-26 10:21:44.578 INFO (MainThread) [homeassistant.setup] Setting up openplantbook
2025-01-26 10:21:44.578 INFO (MainThread) [homeassistant.setup] Setup of domain openplantbook took 0.00 seconds
2025-01-26 10:21:44.578 DEBUG (MainThread) [homeassistant.setup] Phase config_entry_setup for openplantbook (7c8d034e2580f5ebd6069cad119a2622) took 0.00s (elapsed=0.00s) (wait_time=0.00s)
2025-01-26 10:21:44.632 INFO (MainThread) [homeassistant.setup] Setting up browser_mod
2025-01-26 10:21:44.638 INFO (MainThread) [homeassistant.setup] Setup of domain browser_mod took 0.01 seconds
2025-01-26 10:21:44.638 DEBUG (MainThread) [homeassistant.setup] Adding wait for wait_import_platforms for browser_mod (c80c4c712d34680a2c23e146fe7de593) of 0.00
2025-01-26 10:21:44.644 DEBUG (MainThread) [homeassistant.setup] Phase config_entry_setup for browser_mod (c80c4c712d34680a2c23e146fe7de593) took 0.01s (elapsed=0.01s) (wait_time=0.00s)
2025-01-26 10:21:44.661 INFO (MainThread) [homeassistant.setup] Setting up goodwe
2025-01-26 10:21:44.661 INFO (MainThread) [homeassistant.setup] Setup of domain goodwe took 0.00 seconds
2025-01-26 10:21:44.673 INFO (MainThread) [homeassistant.setup] Setting up sensibo
2025-01-26 10:21:44.673 INFO (MainThread) [homeassistant.setup] Setup of domain sensibo took 0.00 seconds
2025-01-26 10:21:44.695 INFO (MainThread) [homeassistant.setup] Setting up sonoff
2025-01-26 10:21:44.696 INFO (MainThread) [homeassistant.setup] Setup of domain sonoff took 0.00 seconds
2025-01-26 10:21:44.714 INFO (MainThread) [homeassistant.setup] Setting up onkyo
2025-01-26 10:21:44.714 INFO (MainThread) [homeassistant.setup] Setup of domain onkyo took 0.00 seconds
2025-01-26 10:21:44.765 INFO (MainThread) [homeassistant.setup] Setting up localtuya
2025-01-26 10:21:44.767 INFO (MainThread) [homeassistant.setup] Setup of domain localtuya took 0.00 seconds
2025-01-26 10:21:44.774 INFO (MainThread) [homeassistant.setup] Setting up adguard
2025-01-26 10:21:44.774 INFO (MainThread) [homeassistant.setup] Setup of domain adguard took 0.00 seconds
2025-01-26 10:21:44.783 INFO (MainThread) [homeassistant.setup] Setting up energy
2025-01-26 10:21:44.783 INFO (MainThread) [homeassistant.setup] Setup of domain energy took 0.00 seconds
2025-01-26 10:21:44.785 INFO (MainThread) [homeassistant.setup] Setting up google_translate
2025-01-26 10:21:44.785 INFO (MainThread) [homeassistant.setup] Setup of domain google_translate took 0.00 seconds
2025-01-26 10:21:44.786 DEBUG (MainThread) [homeassistant.setup] Phase config_entry_setup for google_translate (2b35665452c3d4af2cd2a67ec26072d7) took 0.00s (elapsed=0.00s) (wait_time=0.00s)
2025-01-26 10:21:44.786 DEBUG (MainThread) [homeassistant.setup] Phase platform_setup for google_translate (547652873216) took 0.00s (elapsed=0.00s) (wait_time=0.00s)
2025-01-26 10:21:44.791 INFO (MainThread) [homeassistant.setup] Setting up schedule
2025-01-26 10:21:44.792 INFO (MainThread) [homeassistant.setup] Setup of domain schedule took 0.00 seconds
2025-01-26 10:21:44.796 INFO (MainThread) [homeassistant.setup] Setting up met
2025-01-26 10:21:44.796 INFO (MainThread) [homeassistant.setup] Setup of domain met took 0.00 seconds
2025-01-26 10:21:45.223 DEBUG (MainThread) [homeassistant.setup] Phase platform_setup for smtp (546876852080) took 2.10s (elapsed=2.10s) (wait_time=0.00s)
2025-01-26 10:21:45.227 DEBUG (MainThread) [homeassistant.setup] Phase platform_setup for smtp (547099535904) took 2.11s (elapsed=2.11s) (wait_time=0.00s)
2025-01-26 10:21:45.231 INFO (MainThread) [homeassistant.setup] Setting up onvif
2025-01-26 10:21:45.231 INFO (MainThread) [homeassistant.setup] Setup of domain onvif took 0.00 seconds
2025-01-26 10:21:45.251 INFO (MainThread) [homeassistant.setup] Setting up teamtracker
2025-01-26 10:21:45.251 INFO (MainThread) [homeassistant.setup] Setup of domain teamtracker took 0.00 seconds
2025-01-26 10:21:45.256 INFO (MainThread) [homeassistant.setup] Setting up rpi_power
2025-01-26 10:21:45.257 INFO (MainThread) [homeassistant.setup] Setup of domain rpi_power took 0.00 seconds
2025-01-26 10:21:45.552 INFO (MainThread) [homeassistant.setup] Setting up ecovacs
2025-01-26 10:21:45.552 INFO (MainThread) [homeassistant.setup] Setup of domain ecovacs took 0.00 seconds
2025-01-26 10:21:45.556 INFO (MainThread) [homeassistant.setup] Setting up webrtc
2025-01-26 10:21:45.576 INFO (MainThread) [homeassistant.setup] Setup of domain webrtc took 0.02 seconds
2025-01-26 10:21:45.576 DEBUG (MainThread) [homeassistant.setup] Phase config_entry_setup for webrtc (01JCQ20FCJJ64GJSWZWTAW1Z89) took 0.00s (elapsed=0.00s) (wait_time=0.00s)
2025-01-26 10:21:45.609 INFO (MainThread) [homeassistant.setup] Setting up go2rtc
2025-01-26 10:21:45.612 INFO (MainThread) [homeassistant.setup] Setting up homeassistant_alerts
2025-01-26 10:21:45.612 INFO (MainThread) [homeassistant.setup] Setup of domain homeassistant_alerts took 0.00 seconds
2025-01-26 10:21:45.619 INFO (MainThread) [homeassistant.setup] Setting up my
2025-01-26 10:21:45.619 INFO (MainThread) [homeassistant.setup] Setup of domain my took 0.00 seconds
2025-01-26 10:21:45.619 INFO (MainThread) [homeassistant.setup] Setting up sun
2025-01-26 10:21:45.619 INFO (MainThread) [homeassistant.setup] Setup of domain sun took 0.00 seconds
2025-01-26 10:21:45.621 DEBUG (MainThread) [homeassistant.setup] Adding wait for wait_import_platforms for sun (c854e74e9974a9daefb31c04465a8397) of 0.00
2025-01-26 10:21:45.623 DEBUG (MainThread) [homeassistant.setup] Phase config_entry_setup for sun (c854e74e9974a9daefb31c04465a8397) took 0.00s (elapsed=0.00s) (wait_time=0.00s)
2025-01-26 10:21:45.623 INFO (MainThread) [homeassistant.setup] Setting up season
2025-01-26 10:21:45.623 INFO (MainThread) [homeassistant.setup] Setup of domain season took 0.00 seconds
2025-01-26 10:21:45.737 INFO (MainThread) [homeassistant.setup] Setup of domain go2rtc took 0.13 seconds
2025-01-26 10:21:45.738 DEBUG (MainThread) [homeassistant.setup] Phase config_entry_setup for go2rtc (01JC1JDWC9F7D7V0WT55CFVS4T) took 0.00s (elapsed=0.00s) (wait_time=0.00s)
2025-01-26 10:21:46.266 DEBUG (MainThread) [homeassistant.setup] Phase platform_setup for discogs (547608674608) took 4.06s (elapsed=4.06s) (wait_time=0.00s)
2025-01-26 10:21:46.898 INFO (MainThread) [homeassistant.setup] Setting up local_calendar
2025-01-26 10:21:46.898 INFO (MainThread) [homeassistant.setup] Setup of domain local_calendar took 0.00 seconds
2025-01-26 10:21:46.903 INFO (MainThread) [homeassistant.setup] Setting up input_text
2025-01-26 10:21:46.907 INFO (MainThread) [homeassistant.setup] Setup of domain input_text took 0.00 seconds
2025-01-26 10:21:46.916 INFO (MainThread) [homeassistant.setup] Setting up version
2025-01-26 10:21:46.917 INFO (MainThread) [homeassistant.setup] Setup of domain version took 0.00 seconds
2025-01-26 10:21:46.918 INFO (MainThread) [homeassistant.setup] Setting up uptime
2025-01-26 10:21:46.918 INFO (MainThread) [homeassistant.setup] Setup of domain uptime took 0.00 seconds
2025-01-26 10:21:46.932 INFO (MainThread) [homeassistant.setup] Setting up dlna_dmr
2025-01-26 10:21:46.932 INFO (MainThread) [homeassistant.setup] Setup of domain dlna_dmr took 0.00 seconds
2025-01-26 10:21:46.977 INFO (MainThread) [homeassistant.setup] Setting up google_home
2025-01-26 10:21:46.978 INFO (MainThread) [homeassistant.setup] Setup of domain google_home took 0.00 seconds
2025-01-26 10:21:46.990 INFO (MainThread) [homeassistant.setup] Setting up blitzortung
2025-01-26 10:21:46.990 INFO (MainThread) [homeassistant.setup] Setup of domain blitzortung took 0.00 seconds
2025-01-26 10:21:47.001 INFO (MainThread) [homeassistant.setup] Setting up qnap
2025-01-26 10:21:47.001 INFO (MainThread) [homeassistant.setup] Setup of domain qnap took 0.00 seconds
2025-01-26 10:21:47.018 INFO (MainThread) [homeassistant.setup] Setting up ipp
2025-01-26 10:21:47.018 INFO (MainThread) [homeassistant.setup] Setup of domain ipp took 0.00 seconds
2025-01-26 10:21:47.023 INFO (MainThread) [homeassistant.setup] Setting up bhyve
2025-01-26 10:21:47.023 INFO (MainThread) [homeassistant.setup] Setup of domain bhyve took 0.00 seconds
2025-01-26 10:21:47.026 INFO (MainThread) [homeassistant.setup] Setting up public_transport_victoria
2025-01-26 10:21:47.026 INFO (MainThread) [homeassistant.setup] Setup of domain public_transport_victoria took 0.00 seconds
2025-01-26 10:21:47.030 INFO (MainThread) [homeassistant.setup] Setting up dnsip
2025-01-26 10:21:47.030 INFO (MainThread) [homeassistant.setup] Setup of domain dnsip took 0.00 seconds
2025-01-26 10:21:47.032 INFO (MainThread) [homeassistant.setup] Setting up mjpeg
2025-01-26 10:21:47.032 INFO (MainThread) [homeassistant.setup] Setup of domain mjpeg took 0.00 seconds
2025-01-26 10:21:47.032 DEBUG (MainThread) [homeassistant.setup] Adding wait for wait_import_platforms for mjpeg (01JE2Q9V6JMXWTHXK1REKH1DNS) of 0.00
2025-01-26 10:21:47.033 DEBUG (MainThread) [homeassistant.setup] Phase config_entry_setup for mjpeg (01JE2Q9V6JMXWTHXK1REKH1DNS) took 0.00s (elapsed=0.00s) (wait_time=0.00s)
2025-01-26 10:21:47.034 DEBUG (MainThread) [homeassistant.setup] Phase config_entry_setup for mjpeg (01JE2QBT8XNE2HCHVZ5RCTF8V4) took 0.00s (elapsed=0.00s) (wait_time=0.00s)
2025-01-26 10:21:47.037 INFO (MainThread) [homeassistant.setup] Setting up input_datetime
2025-01-26 10:21:47.041 INFO (MainThread) [homeassistant.setup] Setup of domain input_datetime took 0.00 seconds
2025-01-26 10:21:47.075 INFO (MainThread) [homeassistant.setup] Setting up edgeos
2025-01-26 10:21:47.076 INFO (MainThread) [homeassistant.setup] Setup of domain edgeos took 0.00 seconds
2025-01-26 10:21:47.081 INFO (MainThread) [homeassistant.setup] Setting up hardware
2025-01-26 10:21:47.084 INFO (MainThread) [homeassistant.setup] Setup of domain hardware took 0.00 seconds
2025-01-26 10:21:47.086 DEBUG (MainThread) [homeassistant.setup] Phase config_entry_setup for edgeos (15cf902452c23567112c4385013bd71d) took 0.01s (elapsed=0.01s) (wait_time=0.00s)
2025-01-26 10:21:47.087 INFO (MainThread) [homeassistant.setup] Setting up shopping_list
2025-01-26 10:21:47.088 INFO (MainThread) [homeassistant.setup] Setup of domain shopping_list took 0.00 seconds
2025-01-26 10:21:47.104 INFO (MainThread) [homeassistant.setup] Setting up thread
2025-01-26 10:21:47.105 INFO (MainThread) [homeassistant.setup] Setup of domain thread took 0.00 seconds
2025-01-26 10:21:47.105 DEBUG (MainThread) [homeassistant.setup] Phase config_entry_setup for thread (b3790bbc94c414ebe234870eedef451a) took 0.00s (elapsed=0.00s) (wait_time=0.00s)
2025-01-26 10:21:47.110 INFO (MainThread) [homeassistant.setup] Setting up switch_as_x
2025-01-26 10:21:47.110 INFO (MainThread) [homeassistant.setup] Setup of domain switch_as_x took 0.00 seconds
2025-01-26 10:21:47.110 DEBUG (MainThread) [homeassistant.setup] Adding wait for wait_import_platforms for switch_as_x (b171edc3a608ec5e2c829044eb807103) of 0.00
2025-01-26 10:21:47.111 DEBUG (MainThread) [homeassistant.setup] Phase config_entry_setup for switch_as_x (b171edc3a608ec5e2c829044eb807103) took 0.00s (elapsed=0.00s) (wait_time=0.00s)
2025-01-26 10:21:47.112 DEBUG (MainThread) [homeassistant.setup] Phase config_entry_setup for switch_as_x (1b68687e75145f65e9335377e221a4c8) took 0.00s (elapsed=0.00s) (wait_time=0.00s)
2025-01-26 10:21:47.114 INFO (MainThread) [homeassistant.setup] Setting up switch
2025-01-26 10:21:47.117 DEBUG (MainThread) [homeassistant.setup] Phase platform_setup for template (546714484176) took 0.00s (elapsed=0.00s) (wait_time=0.00s)
2025-01-26 10:21:47.117 INFO (MainThread) [homeassistant.setup] Setup of domain switch took 0.00 seconds
2025-01-26 10:21:47.118 DEBUG (MainThread) [homeassistant.setup] Phase platform_setup for switch (547100466432) took 0.00s (elapsed=0.00s) (wait_time=0.00s)
2025-01-26 10:21:47.118 DEBUG (MainThread) [homeassistant.setup] Phase platform_setup for switch (547100466592) took 0.00s (elapsed=0.00s) (wait_time=0.00s)
2025-01-26 10:21:47.119 DEBUG (MainThread) [homeassistant.setup] Phase platform_setup for switch (547100466832) took 0.00s (elapsed=0.00s) (wait_time=0.00s)
2025-01-26 10:21:47.119 DEBUG (MainThread) [homeassistant.setup] Phase platform_setup for switch (547100467072) took 0.00s (elapsed=0.00s) (wait_time=0.00s)
2025-01-26 10:21:47.119 DEBUG (MainThread) [homeassistant.setup] Phase platform_setup for switch (547100467312) took 0.00s (elapsed=0.00s) (wait_time=0.00s)
2025-01-26 10:21:47.120 DEBUG (MainThread) [homeassistant.setup] Phase platform_setup for switch (547100467552) took 0.00s (elapsed=0.00s) (wait_time=0.00s)
2025-01-26 10:21:47.120 DEBUG (MainThread) [homeassistant.setup] Phase platform_setup for switch (547100467792) took 0.00s (elapsed=0.00s) (wait_time=0.00s)
2025-01-26 10:21:47.120 DEBUG (MainThread) [homeassistant.setup] Phase platform_setup for switch (547100468032) took 0.00s (elapsed=0.00s) (wait_time=0.00s)
2025-01-26 10:21:47.121 DEBUG (MainThread) [homeassistant.setup] Phase platform_setup for switch (547100468272) took 0.00s (elapsed=0.00s) (wait_time=0.00s)
2025-01-26 10:21:47.121 DEBUG (MainThread) [homeassistant.setup] Phase platform_setup for switch (547100468512) took 0.00s (elapsed=0.00s) (wait_time=0.00s)
2025-01-26 10:21:47.121 DEBUG (MainThread) [homeassistant.setup] Phase platform_setup for switch (547100468752) took 0.00s (elapsed=0.00s) (wait_time=0.00s)
2025-01-26 10:21:47.122 DEBUG (MainThread) [homeassistant.setup] Phase platform_setup for switch (547100468992) took 0.00s (elapsed=0.00s) (wait_time=0.00s)
2025-01-26 10:21:47.122 DEBUG (MainThread) [homeassistant.setup] Phase platform_setup for switch (547100469232) took 0.00s (elapsed=0.00s) (wait_time=0.00s)
2025-01-26 10:21:47.122 DEBUG (MainThread) [homeassistant.setup] Phase platform_setup for switch (547100469472) took 0.00s (elapsed=0.00s) (wait_time=0.00s)
2025-01-26 10:21:47.123 DEBUG (MainThread) [homeassistant.setup] Phase platform_setup for switch (547100469712) took 0.00s (elapsed=0.00s) (wait_time=0.00s)
2025-01-26 10:21:47.123 DEBUG (MainThread) [homeassistant.setup] Phase platform_setup for switch (547100469952) took 0.00s (elapsed=0.00s) (wait_time=0.00s)
2025-01-26 10:21:47.123 DEBUG (MainThread) [homeassistant.setup] Phase platform_setup for switch (547100470192) took 0.00s (elapsed=0.00s) (wait_time=0.00s)
2025-01-26 10:21:47.123 DEBUG (MainThread) [homeassistant.setup] Phase platform_setup for switch (547100470432) took 0.00s (elapsed=0.00s) (wait_time=0.00s)
2025-01-26 10:21:47.124 DEBUG (MainThread) [homeassistant.setup] Phase platform_setup for switch (547100470672) took 0.00s (elapsed=0.00s) (wait_time=0.00s)
2025-01-26 10:21:47.124 DEBUG (MainThread) [homeassistant.setup] Phase platform_setup for switch (547100470912) took 0.00s (elapsed=0.00s) (wait_time=0.00s)
2025-01-26 10:21:47.124 DEBUG (MainThread) [homeassistant.setup] Phase platform_setup for switch (547100471152) took 0.00s (elapsed=0.00s) (wait_time=0.00s)
2025-01-26 10:21:47.125 DEBUG (MainThread) [homeassistant.setup] Phase platform_setup for switch (547100471392) took 0.00s (elapsed=0.00s) (wait_time=0.00s)
2025-01-26 10:21:47.125 DEBUG (MainThread) [homeassistant.setup] Phase platform_setup for switch (547100471632) took 0.00s (elapsed=0.00s) (wait_time=0.00s)
2025-01-26 10:21:47.125 DEBUG (MainThread) [homeassistant.setup] Phase platform_setup for switch (547100471872) took 0.00s (elapsed=0.00s) (wait_time=0.00s)
2025-01-26 10:21:47.147 INFO (MainThread) [homeassistant.setup] Setting up synology_dsm
2025-01-26 10:21:47.147 INFO (MainThread) [homeassistant.setup] Setup of domain synology_dsm took 0.00 seconds
2025-01-26 10:21:47.155 INFO (MainThread) [homeassistant.setup] Setting up octoprint
2025-01-26 10:21:47.155 INFO (MainThread) [homeassistant.setup] Setup of domain octoprint took 0.00 seconds
2025-01-26 10:21:47.169 INFO (MainThread) [homeassistant.setup] Setting up smart_irrigation
2025-01-26 10:21:47.169 INFO (MainThread) [homeassistant.setup] Setup of domain smart_irrigation took 0.00 seconds
2025-01-26 10:21:47.178 INFO (MainThread) [homeassistant.setup] Setting up ping
2025-01-26 10:21:47.180 INFO (MainThread) [homeassistant.setup] Setup of domain ping took 0.00 seconds
2025-01-26 10:21:47.590 INFO (MainThread) [homeassistant.setup] Setting up smartthings
2025-01-26 10:21:47.590 INFO (MainThread) [homeassistant.setup] Setup of domain smartthings took 0.00 seconds
2025-01-26 10:21:47.699 INFO (MainThread) [homeassistant.setup] Setting up smartthinq_sensors
2025-01-26 10:21:47.699 INFO (MainThread) [homeassistant.setup] Setup of domain smartthinq_sensors took 0.00 seconds
2025-01-26 10:21:47.703 INFO (MainThread) [homeassistant.setup] Setting up command_line
2025-01-26 10:21:47.705 INFO (MainThread) [homeassistant.setup] Setup of domain command_line took 0.00 seconds
2025-01-26 10:21:47.854 INFO (MainThread) [homeassistant.setup] Setting up wled
2025-01-26 10:21:47.863 INFO (MainThread) [homeassistant.setup] Setting up ecowitt
2025-01-26 10:21:47.863 INFO (MainThread) [homeassistant.setup] Setup of domain ecowitt took 0.00 seconds
2025-01-26 10:21:47.886 INFO (MainThread) [homeassistant.setup] Setting up androidtv
2025-01-26 10:21:47.886 INFO (MainThread) [homeassistant.setup] Setup of domain androidtv took 0.00 seconds
2025-01-26 10:21:48.454 INFO (MainThread) [homeassistant.setup] Setting up workday
2025-01-26 10:21:48.455 INFO (MainThread) [homeassistant.setup] Setup of domain workday took 0.00 seconds
2025-01-26 10:21:48.455 INFO (MainThread) [homeassistant.setup] Setting up local_todo
2025-01-26 10:21:48.455 INFO (MainThread) [homeassistant.setup] Setup of domain local_todo took 0.00 seconds
2025-01-26 10:21:48.455 INFO (MainThread) [homeassistant.setup] Setting up accuweather
2025-01-26 10:21:48.455 INFO (MainThread) [homeassistant.setup] Setup of domain accuweather took 0.00 seconds
2025-01-26 10:21:48.568 INFO (MainThread) [homeassistant.setup] Setting up androidtv_remote
2025-01-26 10:21:48.568 INFO (MainThread) [homeassistant.setup] Setup of domain androidtv_remote took 0.00 seconds
2025-01-26 10:21:48.784 INFO (MainThread) [homeassistant.setup] Setting up music_assistant
2025-01-26 10:21:48.785 INFO (MainThread) [homeassistant.setup] Setup of domain music_assistant took 0.00 seconds
2025-01-26 10:21:48.802 INFO (MainThread) [homeassistant.setup] Setting up broadlink
2025-01-26 10:21:48.803 INFO (MainThread) [homeassistant.setup] Setup of domain broadlink took 0.00 seconds
2025-01-26 10:21:48.867 INFO (MainThread) [homeassistant.setup] Setting up unifi
2025-01-26 10:21:48.869 INFO (MainThread) [homeassistant.setup] Setup of domain unifi took 0.00 seconds
2025-01-26 10:21:48.874 INFO (MainThread) [homeassistant.setup] Setting up dlna_dms
2025-01-26 10:21:48.875 INFO (MainThread) [homeassistant.setup] Setup of domain dlna_dms took 0.00 seconds
2025-01-26 10:21:48.888 INFO (MainThread) [homeassistant.setup] Setting up pirateweather
2025-01-26 10:21:48.888 INFO (MainThread) [homeassistant.setup] Setup of domain pirateweather took 0.00 seconds
2025-01-26 10:21:48.890 INFO (MainThread) [homeassistant.setup] Setting up nut
2025-01-26 10:21:48.890 INFO (MainThread) [homeassistant.setup] Setup of domain nut took 0.00 seconds
2025-01-26 10:21:48.984 DEBUG (MainThread) [homeassistant.setup] Phase config_entry_setup for dlna_dms (ac74d6a5986e603d541968b0aa721efa) took 0.11s (elapsed=0.11s) (wait_time=0.00s)
2025-01-26 10:21:49.034 DEBUG (MainThread) [homeassistant.setup] Phase config_entry_setup for dlna_dms (1ca13839076e6e5581e4a06da625a4b2) took 0.16s (elapsed=0.16s) (wait_time=0.00s)
2025-01-26 10:21:49.396 DEBUG (MainThread) [homeassistant.setup] Phase config_entry_setup for dlna_dms (6197003120d9f31de5694a0df8cc7872) took 0.52s (elapsed=0.52s) (wait_time=0.00s)
2025-01-26 10:21:49.700 WARNING (MainThread) [custom_components.sonoff] Can't login in auto mode: TimeoutError()
2025-01-26 10:21:49.701 DEBUG (MainThread) [homeassistant.setup] Adding wait for wait_import_platforms for sonoff (2259b5c18179a3ace989eb3a9b91527e) of 0.00
2025-01-26 10:21:49.701 INFO (MainThread) [homeassistant.setup] Setting up button
2025-01-26 10:21:49.702 INFO (MainThread) [homeassistant.setup] Setup of domain button took 0.00 seconds
2025-01-26 10:21:49.702 DEBUG (MainThread) [homeassistant.setup] Adding wait for wait_base_component for sonoff (2259b5c18179a3ace989eb3a9b91527e) of 0.00
2025-01-26 10:21:49.702 INFO (MainThread) [homeassistant.setup] Setting up cover
2025-01-26 10:21:49.704 INFO (MainThread) [homeassistant.setup] Setup of domain cover took 0.00 seconds
2025-01-26 10:21:49.704 DEBUG (MainThread) [homeassistant.setup] Adding wait for wait_base_component for sonoff (2259b5c18179a3ace989eb3a9b91527e) of 0.00
2025-01-26 10:21:49.705 INFO (MainThread) [homeassistant.setup] Setting up fan
2025-01-26 10:21:49.706 INFO (MainThread) [homeassistant.setup] Setup of domain fan took 0.00 seconds
2025-01-26 10:21:49.706 DEBUG (MainThread) [homeassistant.setup] Adding wait for wait_base_component for sonoff (2259b5c18179a3ace989eb3a9b91527e) of 0.00
2025-01-26 10:21:49.707 INFO (MainThread) [homeassistant.setup] Setting up remote
2025-01-26 10:21:49.708 INFO (MainThread) [homeassistant.setup] Setup of domain remote took 0.00 seconds
2025-01-26 10:21:49.708 DEBUG (MainThread) [homeassistant.setup] Adding wait for wait_base_component for sonoff (2259b5c18179a3ace989eb3a9b91527e) of 0.00
2025-01-26 10:21:49.719 INFO (MainThread) [homeassistant.setup] Setting up zha
2025-01-26 10:21:49.720 INFO (MainThread) [homeassistant.setup] Setup of domain zha took 0.00 seconds
2025-01-26 10:21:49.729 INFO (MainThread) [homeassistant.setup] Setting up speedtestdotnet
2025-01-26 10:21:49.729 INFO (MainThread) [homeassistant.setup] Setup of domain speedtestdotnet took 0.00 seconds
2025-01-26 10:21:49.741 INFO (MainThread) [homeassistant.setup] Setting up anniversaries
2025-01-26 10:21:49.741 INFO (MainThread) [homeassistant.setup] Setup of domain anniversaries took 0.00 seconds
2025-01-26 10:21:49.812 INFO (MainThread) [homeassistant.setup] Setting up grocy
2025-01-26 10:21:49.812 INFO (MainThread) [homeassistant.setup] Setup of domain grocy took 0.00 seconds
2025-01-26 10:21:49.818 DEBUG (MainThread) [homeassistant.setup] Phase platform_setup for cloud (547090455104) took 0.00s (elapsed=0.00s) (wait_time=0.00s)
2025-01-26 10:21:49.824 INFO (MainThread) [homeassistant.setup] Setting up ios
2025-01-26 10:21:49.825 INFO (MainThread) [homeassistant.setup] Setup of domain ios took 0.00 seconds
2025-01-26 10:21:49.841 INFO (MainThread) [homeassistant.setup] Setting up proximity
2025-01-26 10:21:49.841 INFO (MainThread) [homeassistant.setup] Setup of domain proximity took 0.00 seconds
2025-01-26 10:21:49.887 INFO (MainThread) [homeassistant.setup] Setting up cast
2025-01-26 10:21:49.888 INFO (MainThread) [homeassistant.setup] Setup of domain cast took 0.00 seconds
2025-01-26 10:21:49.893 INFO (MainThread) [homeassistant.setup] Setting up generic
2025-01-26 10:21:49.893 INFO (MainThread) [homeassistant.setup] Setup of domain generic took 0.00 seconds
2025-01-26 10:21:49.893 DEBUG (MainThread) [homeassistant.setup] Adding wait for wait_import_platforms for generic (01JE55JB2972ZV320483AWCFRZ) of 0.00
2025-01-26 10:21:49.894 DEBUG (MainThread) [homeassistant.setup] Phase config_entry_setup for generic (01JE55JB2972ZV320483AWCFRZ) took 0.00s (elapsed=0.00s) (wait_time=0.00s)
2025-01-26 10:21:49.903 DEBUG (MainThread) [homeassistant.setup] Phase platform_setup for waste_collection_schedule (546863922624) took 0.00s (elapsed=0.00s) (wait_time=0.00s)
2025-01-26 10:21:50.296 INFO (MainThread) [homeassistant.setup] Setting up spotify
2025-01-26 10:21:50.297 INFO (MainThread) [homeassistant.setup] Setup of domain spotify took 0.00 seconds
2025-01-26 10:21:50.362 INFO (MainThread) [homeassistant.setup] Setting up google_photos
2025-01-26 10:21:50.362 INFO (MainThread) [homeassistant.setup] Setup of domain google_photos took 0.00 seconds
2025-01-26 10:21:50.630 INFO (MainThread) [homeassistant.setup] Setting up spotifyplus
2025-01-26 10:21:50.639 INFO (MainThread) [homeassistant.setup] Setup of domain spotifyplus took 0.01 seconds
2025-01-26 10:21:51.765 INFO (MainThread) [homeassistant.setup] Setting up nest
2025-01-26 10:21:51.766 INFO (MainThread) [homeassistant.setup] Setup of domain nest took 0.00 seconds
2025-01-26 10:21:51.881 INFO (MainThread) [homeassistant.setup] Setting up google
2025-01-26 10:21:51.881 INFO (MainThread) [homeassistant.setup] Setup of domain google took 0.00 seconds
2025-01-26 10:21:51.891 DEBUG (MainThread) [homeassistant.setup] Adding wait for wait_import_platforms for nmap_tracker (b31af4044a076ce3404a36825c39df81) of 8.05
2025-01-26 10:21:51.891 DEBUG (MainThread) [homeassistant.setup] Phase config_entry_setup for nmap_tracker (b31af4044a076ce3404a36825c39df81) took 0.00s (elapsed=8.05s) (wait_time=8.05s)
2025-01-26 10:21:51.894 DEBUG (MainThread) [homeassistant.setup] Adding wait for wait_import_platforms for watchman (01JD6AFAVCCSVYB6Y223KAB2M7) of 7.82
2025-01-26 10:21:51.895 DEBUG (MainThread) [homeassistant.setup] Phase config_entry_setup for watchman (01JD6AFAVCCSVYB6Y223KAB2M7) took 0.00s (elapsed=7.82s) (wait_time=7.82s)
2025-01-26 10:21:51.905 DEBUG (MainThread) [homeassistant.setup] Adding wait for wait_import_platforms for ps4 (256cdcf0291151e69ac883715e558336) of 7.65
2025-01-26 10:21:51.918 DEBUG (MainThread) [homeassistant.setup] Phase platform_setup for nfandroidtv (546845714816) took 0.03s (elapsed=0.03s) (wait_time=0.00s)
2025-01-26 10:21:52.031 INFO (MainThread) [homeassistant.setup] Setting up esphome
2025-01-26 10:21:52.036 INFO (MainThread) [homeassistant.setup] Setup of domain esphome took 0.01 seconds
2025-01-26 10:21:52.056 INFO (MainThread) [homeassistant.setup] Setting up mobile_app
2025-01-26 10:21:52.057 INFO (MainThread) [homeassistant.setup] Setup of domain mobile_app took 0.00 seconds
2025-01-26 10:21:52.057 DEBUG (MainThread) [homeassistant.setup] Adding wait for wait_import_platforms for mobile_app (ba880a3cee5f3468764968c925ab8f3e) of 0.00
2025-01-26 10:21:52.063 DEBUG (MainThread) [homeassistant.setup] Phase config_entry_setup for mobile_app (ba880a3cee5f3468764968c925ab8f3e) took 0.01s (elapsed=0.01s) (wait_time=0.00s)
2025-01-26 10:21:52.064 DEBUG (MainThread) [homeassistant.setup] Phase config_entry_setup for mobile_app (e1b9826f40ae880759da546e67a588ef) took 0.00s (elapsed=0.00s) (wait_time=0.00s)
2025-01-26 10:21:52.070 DEBUG (MainThread) [homeassistant.setup] Phase config_entry_setup for mobile_app (01J9432G4TPAS6ENNHTJ5R5EHR) took 0.01s (elapsed=0.01s) (wait_time=0.00s)
2025-01-26 10:21:52.072 DEBUG (MainThread) [homeassistant.setup] Phase config_entry_setup for mobile_app (01JDBA4XXE7GFP8D0SXK1AR4MV) took 0.00s (elapsed=0.00s) (wait_time=0.00s)
2025-01-26 10:21:52.073 INFO (MainThread) [homeassistant.setup] Setting up default_config
2025-01-26 10:21:52.074 INFO (MainThread) [homeassistant.setup] Setup of domain default_config took 0.00 seconds
2025-01-26 10:21:52.085 DEBUG (MainThread) [homeassistant.setup] Phase platform_setup for mobile_app (546596399296) took 0.01s (elapsed=0.01s) (wait_time=0.00s)
2025-01-26 10:21:52.121 DEBUG (MainThread) [homeassistant.setup] Adding wait for wait_import_platforms for xiaomi_miio (90abbb04a16566f0097df4f31307d121) of 7.81
2025-01-26 10:21:52.135 DEBUG (MainThread) [homeassistant.setup] Phase config_entry_setup for xiaomi_miio (90abbb04a16566f0097df4f31307d121) took 0.29s (elapsed=8.10s) (wait_time=7.81s)
2025-01-26 10:21:52.136 DEBUG (MainThread) [homeassistant.setup] Adding wait for wait_import_platforms for xiaomi_miio (205928f50856631fe7672363a5a274b4) of 6.50
2025-01-26 10:21:52.140 DEBUG (MainThread) [homeassistant.setup] Phase config_entry_setup for xiaomi_miio (205928f50856631fe7672363a5a274b4) took 1.60s (elapsed=8.10s) (wait_time=6.50s)
2025-01-26 10:21:52.152 DEBUG (MainThread) [homeassistant.setup] Adding wait for wait_import_platforms for hacs (f559a0ead2f1ee6237062549b7aabafa) of 7.75
2025-01-26 10:21:52.173 DEBUG (MainThread) [homeassistant.setup] Phase config_entry_setup for hacs (f559a0ead2f1ee6237062549b7aabafa) took 0.10s (elapsed=7.86s) (wait_time=7.75s)
2025-01-26 10:21:52.179 INFO (MainThread) [homeassistant.setup] Setting up plant
2025-01-26 10:21:52.179 INFO (MainThread) [homeassistant.setup] Setup of domain plant took 0.00 seconds
2025-01-26 10:21:52.180 DEBUG (MainThread) [homeassistant.setup] Adding wait for wait_import_packages for mqtt (c01b4147569b496c9cddd7b8872351d3) of 7.54
2025-01-26 10:21:52.187 DEBUG (MainThread) [homeassistant.setup] Adding wait for wait_import_platforms for onkyo (01JC1JBRR9RFA0K8J702AMEK5F) of 7.46
2025-01-26 10:21:52.199 WARNING (ImportExecutor_0) [homeassistant.components.light] ATTR_COLOR_TEMP was used from echonetlite, this is a deprecated constant which will be removed in HA Core 2026.1. Use kelvin equivalent (ATTR_COLOR_TEMP_KELVIN) instead, please report it to the author of the 'echonetlite' custom integration
2025-01-26 10:21:52.207 WARNING (ImportExecutor_0) [homeassistant.components.light] COLOR_MODE_BRIGHTNESS was used from echonetlite, this is a deprecated constant which will be removed in HA Core 2026.1. Use ColorMode.BRIGHTNESS instead, please report it to the author of the 'echonetlite' custom integration
2025-01-26 10:21:52.207 DEBUG (MainThread) [homeassistant.setup] Phase config_entry_setup for onkyo (01JC1JBRR9RFA0K8J702AMEK5F) took 0.03s (elapsed=7.49s) (wait_time=7.46s)
2025-01-26 10:21:52.215 WARNING (ImportExecutor_0) [homeassistant.components.light] COLOR_MODE_COLOR_TEMP was used from echonetlite, this is a deprecated constant which will be removed in HA Core 2026.1. Use ColorMode.COLOR_TEMP instead, please report it to the author of the 'echonetlite' custom integration
2025-01-26 10:21:52.223 WARNING (ImportExecutor_0) [homeassistant.components.light] ATTR_COLOR_TEMP was used from echonetlite, this is a deprecated constant which will be removed in HA Core 2026.1. Use kelvin equivalent (ATTR_COLOR_TEMP_KELVIN) instead, please report it to the author of the 'echonetlite' custom integration
2025-01-26 10:21:52.231 WARNING (ImportExecutor_0) [homeassistant.components.light] COLOR_MODE_BRIGHTNESS was used from echonetlite, this is a deprecated constant which will be removed in HA Core 2026.1. Use ColorMode.BRIGHTNESS instead, please report it to the author of the 'echonetlite' custom integration
2025-01-26 10:21:52.238 WARNING (ImportExecutor_0) [homeassistant.components.light] COLOR_MODE_COLOR_TEMP was used from echonetlite, this is a deprecated constant which will be removed in HA Core 2026.1. Use ColorMode.COLOR_TEMP instead, please report it to the author of the 'echonetlite' custom integration
2025-01-26 10:21:52.244 DEBUG (MainThread) [homeassistant.setup] Adding wait for wait_import_platforms for echonetlite (ded16f430cb2d875590467afd5e4a573) of 7.49
2025-01-26 10:21:52.248 INFO (MainThread) [homeassistant.setup] Setting up time
2025-01-26 10:21:52.251 INFO (MainThread) [homeassistant.setup] Setup of domain time took 0.00 seconds
2025-01-26 10:21:52.251 DEBUG (MainThread) [homeassistant.setup] Adding wait for wait_base_component for echonetlite (ded16f430cb2d875590467afd5e4a573) of 0.00
2025-01-26 10:21:52.266 DEBUG (MainThread) [homeassistant.setup] Adding wait for wait_import_platforms for localtuya (0bb55814ed4f8be8a049ee32a060fcca) of 7.50
2025-01-26 10:21:52.267 INFO (MainThread) [homeassistant.setup] Setting up alarm_control_panel
2025-01-26 10:21:52.267 INFO (MainThread) [homeassistant.setup] Setup of domain alarm_control_panel took 0.00 seconds
2025-01-26 10:21:52.267 DEBUG (MainThread) [homeassistant.setup] Adding wait for wait_base_component for localtuya (0bb55814ed4f8be8a049ee32a060fcca) of 0.00
2025-01-26 10:21:52.268 INFO (MainThread) [homeassistant.setup] Setting up humidifier
2025-01-26 10:21:52.269 INFO (MainThread) [homeassistant.setup] Setup of domain humidifier took 0.00 seconds
2025-01-26 10:21:52.269 DEBUG (MainThread) [homeassistant.setup] Adding wait for wait_base_component for localtuya (0bb55814ed4f8be8a049ee32a060fcca) of 0.00
2025-01-26 10:21:52.269 INFO (MainThread) [homeassistant.setup] Setting up lock
2025-01-26 10:21:52.270 INFO (MainThread) [homeassistant.setup] Setup of domain lock took 0.00 seconds
2025-01-26 10:21:52.270 DEBUG (MainThread) [homeassistant.setup] Adding wait for wait_base_component for localtuya (0bb55814ed4f8be8a049ee32a060fcca) of 0.00
2025-01-26 10:21:52.271 INFO (MainThread) [homeassistant.setup] Setting up siren
2025-01-26 10:21:52.271 INFO (MainThread) [homeassistant.setup] Setup of domain siren took 0.00 seconds
2025-01-26 10:21:52.271 DEBUG (MainThread) [homeassistant.setup] Adding wait for wait_base_component for localtuya (0bb55814ed4f8be8a049ee32a060fcca) of 0.00
2025-01-26 10:21:52.273 INFO (MainThread) [homeassistant.setup] Setting up vacuum
2025-01-26 10:21:52.274 INFO (MainThread) [homeassistant.setup] Setup of domain vacuum took 0.00 seconds
2025-01-26 10:21:52.274 DEBUG (MainThread) [homeassistant.setup] Adding wait for wait_base_component for localtuya (0bb55814ed4f8be8a049ee32a060fcca) of 0.00
2025-01-26 10:21:52.275 INFO (MainThread) [homeassistant.setup] Setting up water_heater
2025-01-26 10:21:52.276 INFO (MainThread) [homeassistant.setup] Setup of domain water_heater took 0.00 seconds
2025-01-26 10:21:52.276 DEBUG (MainThread) [homeassistant.setup] Adding wait for wait_base_component for localtuya (0bb55814ed4f8be8a049ee32a060fcca) of 0.00
2025-01-26 10:21:52.277 DEBUG (MainThread) [homeassistant.setup] Phase config_entry_setup for localtuya (0bb55814ed4f8be8a049ee32a060fcca) took 0.01s (elapsed=7.51s) (wait_time=7.50s)
2025-01-26 10:21:52.282 DEBUG (MainThread) [homeassistant.setup] Adding wait for wait_import_platforms for adguard (55f1dea0d4b5b5b5bbdf699a256387fa) of 7.50
2025-01-26 10:21:52.293 DEBUG (MainThread) [homeassistant.setup] Phase platform_setup for energy (546776206784) took 0.00s (elapsed=0.00s) (wait_time=0.00s)
2025-01-26 10:21:52.299 INFO (MainThread) [homeassistant.setup] Setting up analytics
2025-01-26 10:21:52.300 INFO (MainThread) [homeassistant.setup] Setup of domain analytics took 0.00 seconds
2025-01-26 10:21:52.313 DEBUG (MainThread) [homeassistant.setup] Adding wait for wait_import_platforms for goodwe (d1ef4b64ac934bc525ed5026323f7edf) of 7.09
2025-01-26 10:21:52.357 INFO (MainThread) [homeassistant.setup] Setting up tapo_control
2025-01-26 10:21:52.357 INFO (MainThread) [homeassistant.setup] Setup of domain tapo_control took 0.00 seconds
2025-01-26 10:21:52.364 DEBUG (MainThread) [homeassistant.setup] Adding wait for wait_import_platforms for rpi_power (500d1df09c1b40625bb66e653b6fda0b) of 7.11
2025-01-26 10:21:52.374 DEBUG (MainThread) [homeassistant.setup] Adding wait for wait_import_platforms for season (64ac64ef42937a3c35ae1b8ab4d047ab) of 6.75
2025-01-26 10:21:52.383 DEBUG (MainThread) [homeassistant.setup] Phase config_entry_setup for season (64ac64ef42937a3c35ae1b8ab4d047ab) took 0.01s (elapsed=6.76s) (wait_time=6.75s)
2025-01-26 10:21:52.393 DEBUG (MainThread) [homeassistant.setup] Adding wait for wait_import_platforms for local_calendar (366a2ddba2b17e51695204da149a321c) of 5.49
2025-01-26 10:21:52.399 DEBUG (MainThread) [homeassistant.setup] Adding wait for wait_import_platforms for version (62a6a03e6e026e4745c97c6d9d8b002f) of 5.48
2025-01-26 10:21:52.400 DEBUG (MainThread) [homeassistant.setup] Phase config_entry_setup for version (62a6a03e6e026e4745c97c6d9d8b002f) took 0.00s (elapsed=5.48s) (wait_time=5.48s)
2025-01-26 10:21:52.400 DEBUG (MainThread) [homeassistant.setup] Adding wait for wait_import_platforms for uptime (aaa3d05b56ce3906c109730dfcf09e45) of 5.48
2025-01-26 10:21:52.401 DEBUG (MainThread) [homeassistant.setup] Phase config_entry_setup for uptime (aaa3d05b56ce3906c109730dfcf09e45) took 0.00s (elapsed=5.48s) (wait_time=5.48s)
2025-01-26 10:21:52.401 DEBUG (MainThread) [homeassistant.setup] Adding wait for wait_import_platforms for dlna_dmr (3d1154dfd9e0ea6af98dc5a55c99fa53) of 5.47
2025-01-26 10:21:52.402 DEBUG (MainThread) [homeassistant.setup] Phase config_entry_setup for dlna_dmr (3d1154dfd9e0ea6af98dc5a55c99fa53) took 0.00s (elapsed=5.47s) (wait_time=5.47s)
2025-01-26 10:21:52.403 DEBUG (MainThread) [homeassistant.setup] Adding wait for wait_import_platforms for dlna_dmr (1662e933f6d2b44b38840a01b008f212) of 5.47
2025-01-26 10:21:52.404 DEBUG (MainThread) [homeassistant.setup] Phase config_entry_setup for dlna_dmr (1662e933f6d2b44b38840a01b008f212) took 0.00s (elapsed=5.47s) (wait_time=5.47s)
2025-01-26 10:21:52.406 DEBUG (MainThread) [homeassistant.setup] Phase config_entry_setup for rpi_power (500d1df09c1b40625bb66e653b6fda0b) took 0.04s (elapsed=7.15s) (wait_time=7.11s)
2025-01-26 10:21:52.406 DEBUG (MainThread) [homeassistant.setup] Adding wait for wait_import_platforms for blitzortung (fce78b0c6d761fe2484a632631070a88) of 5.41
2025-01-26 10:21:52.408 INFO (MainThread) [homeassistant.setup] Setting up geo_location
2025-01-26 10:21:52.408 INFO (MainThread) [homeassistant.setup] Setup of domain geo_location took 0.00 seconds
2025-01-26 10:21:52.408 DEBUG (MainThread) [homeassistant.setup] Adding wait for wait_base_component for blitzortung (fce78b0c6d761fe2484a632631070a88) of 0.00
2025-01-26 10:21:52.680 DEBUG (MainThread) [homeassistant.setup] Adding wait for wait_import_platforms for dnsip (551a9e66c4a8f36f55dc82728464ad9e) of 5.65
2025-01-26 10:21:52.773 DEBUG (MainThread) [homeassistant.setup] Adding wait for wait_import_platforms for shopping_list (6810986425fd46dafcbd28c345995278) of 5.68
2025-01-26 10:21:52.773 INFO (MainThread) [homeassistant.setup] Setting up todo
2025-01-26 10:21:52.776 INFO (MainThread) [homeassistant.setup] Setup of domain todo took 0.00 seconds
2025-01-26 10:21:52.776 DEBUG (MainThread) [homeassistant.setup] Adding wait for wait_base_component for shopping_list (6810986425fd46dafcbd28c345995278) of 0.00
2025-01-26 10:21:52.777 DEBUG (MainThread) [homeassistant.setup] Phase config_entry_setup for shopping_list (6810986425fd46dafcbd28c345995278) took 0.00s (elapsed=5.69s) (wait_time=5.69s)
2025-01-26 10:21:52.795 DEBUG (MainThread) [homeassistant.setup] Adding wait for wait_import_platforms for smart_irrigation (01JHRJ7VWP57G3NQYTV1Q123VK) of 5.55
2025-01-26 10:21:52.800 DEBUG (MainThread) [homeassistant.setup] Adding wait for wait_import_platforms for octoprint (01J61N47FEJS4BC09JGH8V0VVR) of 5.52
2025-01-26 10:21:52.828 DEBUG (MainThread) [homeassistant.setup] Phase config_entry_setup for blitzortung (fce78b0c6d761fe2484a632631070a88) took 0.42s (elapsed=5.84s) (wait_time=5.41s)
2025-01-26 10:21:52.831 DEBUG (MainThread) [homeassistant.setup] Phase config_entry_setup for smart_irrigation (01JHRJ7VWP57G3NQYTV1Q123VK) took 0.11s (elapsed=5.66s) (wait_time=5.55s)
2025-01-26 10:21:52.844 DEBUG (MainThread) [homeassistant.setup] Adding wait for wait_import_platforms for ipp (7f58c1f3ac7033701ee8d51268d215a8) of 4.98
2025-01-26 10:21:52.848 DEBUG (MainThread) [homeassistant.setup] Phase config_entry_setup for local_calendar (366a2ddba2b17e51695204da149a321c) took 0.46s (elapsed=5.95s) (wait_time=5.49s)
2025-01-26 10:21:52.848 DEBUG (MainThread) [homeassistant.setup] Adding wait for wait_import_platforms for ecowitt (080bdd7317cdc0b4effbac1e9bf29a10) of 4.99
2025-01-26 10:21:52.848 DEBUG (MainThread) [homeassistant.setup] Phase config_entry_setup for ecowitt (080bdd7317cdc0b4effbac1e9bf29a10) took 0.00s (elapsed=4.99s) (wait_time=4.99s)
2025-01-26 10:21:52.849 DEBUG (MainThread) [homeassistant.setup] Adding wait for wait_import_platforms for ping (33d77c441b04de513fb3258a0064efea) of 4.46
2025-01-26 10:21:52.850 DEBUG (MainThread) [homeassistant.setup] Phase config_entry_setup for ping (33d77c441b04de513fb3258a0064efea) took 1.21s (elapsed=5.67s) (wait_time=4.46s)
2025-01-26 10:21:52.858 DEBUG (MainThread) [homeassistant.setup] Phase config_entry_setup for adguard (55f1dea0d4b5b5b5bbdf699a256387fa) took 0.58s (elapsed=8.08s) (wait_time=7.50s)
2025-01-26 10:21:52.862 DEBUG (MainThread) [homeassistant.setup] Adding wait for wait_import_platforms for ping (99a26c3e24859d10f7e70ace48cbb3d4) of 4.46
2025-01-26 10:21:52.864 DEBUG (MainThread) [homeassistant.setup] Phase config_entry_setup for ping (99a26c3e24859d10f7e70ace48cbb3d4) took 1.22s (elapsed=5.68s) (wait_time=4.46s)
2025-01-26 10:21:52.864 DEBUG (MainThread) [homeassistant.setup] Adding wait for wait_import_platforms for ping (a2427cdf898acc2476f667247ba96c90) of 4.46
2025-01-26 10:21:52.865 DEBUG (MainThread) [homeassistant.setup] Phase config_entry_setup for ping (a2427cdf898acc2476f667247ba96c90) took 1.22s (elapsed=5.68s) (wait_time=4.46s)
2025-01-26 10:21:52.865 DEBUG (MainThread) [homeassistant.setup] Adding wait for wait_import_platforms for ping (6fe365eb727bfdcb33dea4838f1a5a07) of 4.46
2025-01-26 10:21:52.866 DEBUG (MainThread) [homeassistant.setup] Phase config_entry_setup for ping (6fe365eb727bfdcb33dea4838f1a5a07) took 1.22s (elapsed=5.68s) (wait_time=4.46s)
2025-01-26 10:21:52.866 DEBUG (MainThread) [homeassistant.setup] Adding wait for wait_import_platforms for ping (dad51b24db2522b29c1bed461c0ab7a5) of 4.46
2025-01-26 10:21:52.867 DEBUG (MainThread) [homeassistant.setup] Phase config_entry_setup for ping (dad51b24db2522b29c1bed461c0ab7a5) took 1.22s (elapsed=5.68s) (wait_time=4.46s)
2025-01-26 10:21:52.868 DEBUG (MainThread) [homeassistant.setup] Adding wait for wait_import_platforms for ping (a2a3553b14494378a926060120020bfa) of 4.46
2025-01-26 10:21:52.869 DEBUG (MainThread) [homeassistant.setup] Phase config_entry_setup for ping (a2a3553b14494378a926060120020bfa) took 1.23s (elapsed=5.68s) (wait_time=4.46s)
2025-01-26 10:21:52.869 DEBUG (MainThread) [homeassistant.setup] Adding wait for wait_import_platforms for ping (c7862e25d13720cd18e1e3c78672e891) of 4.46
2025-01-26 10:21:52.870 DEBUG (MainThread) [homeassistant.setup] Phase config_entry_setup for ping (c7862e25d13720cd18e1e3c78672e891) took 1.23s (elapsed=5.69s) (wait_time=4.46s)
2025-01-26 10:21:52.871 DEBUG (MainThread) [homeassistant.setup] Adding wait for wait_import_platforms for ping (20c90328f398aa19ec144d3227285998) of 4.45
2025-01-26 10:21:52.871 DEBUG (MainThread) [homeassistant.setup] Phase config_entry_setup for ping (20c90328f398aa19ec144d3227285998) took 1.23s (elapsed=5.68s) (wait_time=4.45s)
2025-01-26 10:21:52.872 DEBUG (MainThread) [homeassistant.setup] Adding wait for wait_import_platforms for ping (40ed606a143d44bc71258e8444d32418) of 4.41
2025-01-26 10:21:52.872 DEBUG (MainThread) [homeassistant.setup] Phase config_entry_setup for ping (40ed606a143d44bc71258e8444d32418) took 1.28s (elapsed=5.69s) (wait_time=4.41s)
2025-01-26 10:21:52.872 DEBUG (MainThread) [homeassistant.setup] Adding wait for wait_import_platforms for ping (5c9112b20b22732321af842125b6960f) of 4.41
2025-01-26 10:21:52.874 DEBUG (MainThread) [homeassistant.setup] Phase config_entry_setup for ping (5c9112b20b22732321af842125b6960f) took 1.28s (elapsed=5.69s) (wait_time=4.41s)
2025-01-26 10:21:52.874 DEBUG (MainThread) [homeassistant.setup] Adding wait for wait_import_platforms for ping (8283a785fe26dac002c60d9e9e88980f) of 4.41
2025-01-26 10:21:52.875 DEBUG (MainThread) [homeassistant.setup] Phase config_entry_setup for ping (8283a785fe26dac002c60d9e9e88980f) took 1.28s (elapsed=5.69s) (wait_time=4.41s)
2025-01-26 10:21:52.875 DEBUG (MainThread) [homeassistant.setup] Adding wait for wait_import_platforms for ping (c7cf678f08d7f4acd2dfc5a22f094327) of 4.41
2025-01-26 10:21:52.876 DEBUG (MainThread) [homeassistant.setup] Phase config_entry_setup for ping (c7cf678f08d7f4acd2dfc5a22f094327) took 1.28s (elapsed=5.69s) (wait_time=4.41s)
2025-01-26 10:21:52.876 DEBUG (MainThread) [homeassistant.setup] Adding wait for wait_import_platforms for ping (d1a79803b2b2f0d9c5e4edd11f24e35a) of 4.41
2025-01-26 10:21:52.877 DEBUG (MainThread) [homeassistant.setup] Phase config_entry_setup for ping (d1a79803b2b2f0d9c5e4edd11f24e35a) took 1.28s (elapsed=5.69s) (wait_time=4.41s)
2025-01-26 10:21:52.877 DEBUG (MainThread) [homeassistant.setup] Adding wait for wait_import_platforms for ping (b32a1fd67450a066aa5891fa543cdb93) of 4.42
2025-01-26 10:21:52.878 DEBUG (MainThread) [homeassistant.setup] Phase config_entry_setup for ping (b32a1fd67450a066aa5891fa543cdb93) took 1.28s (elapsed=5.69s) (wait_time=4.42s)
2025-01-26 10:21:52.878 DEBUG (MainThread) [homeassistant.setup] Adding wait for wait_import_platforms for ping (7692245e3ca1fdb186a1d2a8a174d520) of 4.42
2025-01-26 10:21:52.879 DEBUG (MainThread) [homeassistant.setup] Phase config_entry_setup for ping (7692245e3ca1fdb186a1d2a8a174d520) took 1.28s (elapsed=5.70s) (wait_time=4.42s)
2025-01-26 10:21:52.879 DEBUG (MainThread) [homeassistant.setup] Adding wait for wait_import_platforms for ping (27cc2aee4e153ada6afd2aade2188e6c) of 4.42
2025-01-26 10:21:52.880 DEBUG (MainThread) [homeassistant.setup] Phase config_entry_setup for ping (27cc2aee4e153ada6afd2aade2188e6c) took 1.27s (elapsed=5.69s) (wait_time=4.42s)
2025-01-26 10:21:52.880 DEBUG (MainThread) [homeassistant.setup] Adding wait for wait_import_platforms for ping (ac11d86e0f8c24653352dd205a3511b5) of 4.42
2025-01-26 10:21:52.881 DEBUG (MainThread) [homeassistant.setup] Phase config_entry_setup for ping (ac11d86e0f8c24653352dd205a3511b5) took 1.28s (elapsed=5.70s) (wait_time=4.42s)
2025-01-26 10:21:52.881 DEBUG (MainThread) [homeassistant.setup] Adding wait for wait_import_platforms for ping (63b7265898a530dde1e3c51d478e4974) of 4.42
2025-01-26 10:21:52.882 DEBUG (MainThread) [homeassistant.setup] Phase config_entry_setup for ping (63b7265898a530dde1e3c51d478e4974) took 1.27s (elapsed=5.69s) (wait_time=4.42s)
2025-01-26 10:21:52.882 DEBUG (MainThread) [homeassistant.setup] Adding wait for wait_import_platforms for ping (9df201c630a0e6b62e50ddf3ba17bd23) of 4.42
2025-01-26 10:21:52.883 DEBUG (MainThread) [homeassistant.setup] Phase config_entry_setup for ping (9df201c630a0e6b62e50ddf3ba17bd23) took 1.27s (elapsed=5.69s) (wait_time=4.42s)
2025-01-26 10:21:52.883 DEBUG (MainThread) [homeassistant.setup] Adding wait for wait_import_platforms for ping (599aa94677883fbb71591dbe7248790d) of 4.42
2025-01-26 10:21:52.883 DEBUG (MainThread) [homeassistant.setup] Phase config_entry_setup for ping (599aa94677883fbb71591dbe7248790d) took 1.27s (elapsed=5.69s) (wait_time=4.42s)
2025-01-26 10:21:52.884 DEBUG (MainThread) [homeassistant.setup] Adding wait for wait_import_platforms for ping (7f91ddee6fec666b1d17d785febd5e66) of 4.42
2025-01-26 10:21:52.885 DEBUG (MainThread) [homeassistant.setup] Phase config_entry_setup for ping (7f91ddee6fec666b1d17d785febd5e66) took 1.27s (elapsed=5.69s) (wait_time=4.42s)
2025-01-26 10:21:52.885 DEBUG (MainThread) [homeassistant.setup] Adding wait for wait_import_platforms for ping (a8bc422fcf7c97b02fb5a9c870a61ac8) of 4.42
2025-01-26 10:21:52.885 DEBUG (MainThread) [homeassistant.setup] Phase config_entry_setup for ping (a8bc422fcf7c97b02fb5a9c870a61ac8) took 1.27s (elapsed=5.69s) (wait_time=4.42s)
2025-01-26 10:21:52.885 DEBUG (MainThread) [homeassistant.setup] Adding wait for wait_import_platforms for ping (60d52035ed6ed84215f1b1cb5ad80b59) of 4.42
2025-01-26 10:21:52.896 DEBUG (MainThread) [homeassistant.setup] Phase config_entry_setup for ping (60d52035ed6ed84215f1b1cb5ad80b59) took 1.28s (elapsed=5.70s) (wait_time=4.42s)
2025-01-26 10:21:52.896 DEBUG (MainThread) [homeassistant.setup] Adding wait for wait_import_platforms for ping (6417685eaa4b23959cb66c469ea696c3) of 4.43
2025-01-26 10:21:52.897 DEBUG (MainThread) [homeassistant.setup] Phase config_entry_setup for ping (6417685eaa4b23959cb66c469ea696c3) took 1.27s (elapsed=5.70s) (wait_time=4.43s)
2025-01-26 10:21:52.897 DEBUG (MainThread) [homeassistant.setup] Adding wait for wait_import_platforms for ping (1130a28f4423c25e82951227ec196ce1) of 4.43
2025-01-26 10:21:52.898 DEBUG (MainThread) [homeassistant.setup] Phase config_entry_setup for ping (1130a28f4423c25e82951227ec196ce1) took 1.27s (elapsed=5.70s) (wait_time=4.43s)
2025-01-26 10:21:52.898 DEBUG (MainThread) [homeassistant.setup] Adding wait for wait_import_platforms for ping (085b4b0e45ca7fcfe5a0be32893b0e07) of 4.43
2025-01-26 10:21:52.899 DEBUG (MainThread) [homeassistant.setup] Phase config_entry_setup for ping (085b4b0e45ca7fcfe5a0be32893b0e07) took 1.25s (elapsed=5.68s) (wait_time=4.43s)
2025-01-26 10:21:52.899 DEBUG (MainThread) [homeassistant.setup] Adding wait for wait_import_platforms for ping (4a20c360e27fa50d7045922e19be2fc0) of 4.43
2025-01-26 10:21:52.900 DEBUG (MainThread) [homeassistant.setup] Phase config_entry_setup for ping (4a20c360e27fa50d7045922e19be2fc0) took 1.25s (elapsed=5.68s) (wait_time=4.43s)
2025-01-26 10:21:52.900 DEBUG (MainThread) [homeassistant.setup] Adding wait for wait_import_platforms for ping (e5efcaa3fd005946d1246d449828141c) of 4.43
2025-01-26 10:21:52.901 DEBUG (MainThread) [homeassistant.setup] Phase config_entry_setup for ping (e5efcaa3fd005946d1246d449828141c) took 1.25s (elapsed=5.68s) (wait_time=4.43s)
2025-01-26 10:21:52.901 DEBUG (MainThread) [homeassistant.setup] Adding wait for wait_import_platforms for ping (2a0cd26a2ef5fffda2afabd76677187e) of 4.44
2025-01-26 10:21:52.902 DEBUG (MainThread) [homeassistant.setup] Phase config_entry_setup for ping (2a0cd26a2ef5fffda2afabd76677187e) took 1.25s (elapsed=5.69s) (wait_time=4.44s)
2025-01-26 10:21:52.902 DEBUG (MainThread) [homeassistant.setup] Adding wait for wait_import_platforms for ping (29f0a962f1ae82e94b596c2cd2906eff) of 4.44
2025-01-26 10:21:52.903 DEBUG (MainThread) [homeassistant.setup] Phase config_entry_setup for ping (29f0a962f1ae82e94b596c2cd2906eff) took 1.25s (elapsed=5.69s) (wait_time=4.44s)
2025-01-26 10:21:52.903 DEBUG (MainThread) [homeassistant.setup] Adding wait for wait_import_platforms for ping (a5977fe7ec4b4846d88e6b8d32acd8ac) of 4.44
2025-01-26 10:21:52.904 DEBUG (MainThread) [homeassistant.setup] Phase config_entry_setup for ping (a5977fe7ec4b4846d88e6b8d32acd8ac) took 1.25s (elapsed=5.69s) (wait_time=4.44s)
2025-01-26 10:21:52.904 DEBUG (MainThread) [homeassistant.setup] Adding wait for wait_import_platforms for ping (d9aa74be3c8b8f99909ed697b7c26301) of 4.44
2025-01-26 10:21:52.905 DEBUG (MainThread) [homeassistant.setup] Phase config_entry_setup for ping (d9aa74be3c8b8f99909ed697b7c26301) took 1.25s (elapsed=5.69s) (wait_time=4.44s)
2025-01-26 10:21:52.905 DEBUG (MainThread) [homeassistant.setup] Adding wait for wait_import_platforms for ping (ab8452c636e3ace88e475a2b62b74ed2) of 4.44
2025-01-26 10:21:52.907 DEBUG (MainThread) [homeassistant.setup] Phase config_entry_setup for ping (ab8452c636e3ace88e475a2b62b74ed2) took 1.25s (elapsed=5.69s) (wait_time=4.44s)
2025-01-26 10:21:52.908 DEBUG (MainThread) [homeassistant.setup] Adding wait for wait_import_platforms for ping (d623f2985a7aa14e9f08e53576762107) of 4.44
2025-01-26 10:21:52.908 DEBUG (MainThread) [homeassistant.setup] Phase config_entry_setup for ping (d623f2985a7aa14e9f08e53576762107) took 1.25s (elapsed=5.69s) (wait_time=4.44s)
2025-01-26 10:21:52.909 DEBUG (MainThread) [homeassistant.setup] Adding wait for wait_import_platforms for ping (7bcb05b48279f92d2a754638d962a848) of 4.44
2025-01-26 10:21:52.909 DEBUG (MainThread) [homeassistant.setup] Phase config_entry_setup for ping (7bcb05b48279f92d2a754638d962a848) took 1.25s (elapsed=5.69s) (wait_time=4.44s)
2025-01-26 10:21:52.909 DEBUG (MainThread) [homeassistant.setup] Adding wait for wait_import_platforms for ping (8b1f37effbf20e6450574ae6308363bc) of 4.44
2025-01-26 10:21:52.910 DEBUG (MainThread) [homeassistant.setup] Phase config_entry_setup for ping (8b1f37effbf20e6450574ae6308363bc) took 1.26s (elapsed=5.70s) (wait_time=4.44s)
2025-01-26 10:21:52.910 DEBUG (MainThread) [homeassistant.setup] Adding wait for wait_import_platforms for ping (daeadf007d67fde7fcc64f22a6600a27) of 4.42
2025-01-26 10:21:52.911 DEBUG (MainThread) [homeassistant.setup] Phase config_entry_setup for ping (daeadf007d67fde7fcc64f22a6600a27) took 1.28s (elapsed=5.70s) (wait_time=4.42s)
2025-01-26 10:21:52.911 DEBUG (MainThread) [homeassistant.setup] Adding wait for wait_import_platforms for ping (58a86c8c0a9eb70d6b64c49933433964) of 4.41
2025-01-26 10:21:52.912 DEBUG (MainThread) [homeassistant.setup] Phase config_entry_setup for ping (58a86c8c0a9eb70d6b64c49933433964) took 1.29s (elapsed=5.70s) (wait_time=4.41s)
2025-01-26 10:21:52.912 DEBUG (MainThread) [homeassistant.setup] Adding wait for wait_import_platforms for ping (ec031b91488e71af157ee16b80873639) of 4.41
2025-01-26 10:21:52.913 DEBUG (MainThread) [homeassistant.setup] Phase config_entry_setup for ping (ec031b91488e71af157ee16b80873639) took 1.29s (elapsed=5.70s) (wait_time=4.41s)
2025-01-26 10:21:52.913 DEBUG (MainThread) [homeassistant.setup] Adding wait for wait_import_platforms for ping (4c20478806e8ba577a18568e707e7f39) of 4.41
2025-01-26 10:21:52.914 DEBUG (MainThread) [homeassistant.setup] Phase config_entry_setup for ping (4c20478806e8ba577a18568e707e7f39) took 1.29s (elapsed=5.70s) (wait_time=4.41s)
2025-01-26 10:21:52.914 DEBUG (MainThread) [homeassistant.setup] Adding wait for wait_import_platforms for ping (31a12a233603ef330d5f4d01042d49dc) of 4.39
2025-01-26 10:21:52.915 DEBUG (MainThread) [homeassistant.setup] Phase config_entry_setup for ping (31a12a233603ef330d5f4d01042d49dc) took 1.33s (elapsed=5.72s) (wait_time=4.39s)
2025-01-26 10:21:52.915 DEBUG (MainThread) [homeassistant.setup] Adding wait for wait_import_platforms for ping (f8f6dae63a5f48350e4174d84d2473d2) of 4.39
2025-01-26 10:21:52.916 DEBUG (MainThread) [homeassistant.setup] Phase config_entry_setup for ping (f8f6dae63a5f48350e4174d84d2473d2) took 1.32s (elapsed=5.70s) (wait_time=4.39s)
2025-01-26 10:21:52.916 DEBUG (MainThread) [homeassistant.setup] Adding wait for wait_import_platforms for ping (bdcf1d2cda417e50311e284c3fb23b11) of 4.36
2025-01-26 10:21:52.917 DEBUG (MainThread) [homeassistant.setup] Phase config_entry_setup for ping (bdcf1d2cda417e50311e284c3fb23b11) took 1.35s (elapsed=5.70s) (wait_time=4.36s)
2025-01-26 10:21:52.917 DEBUG (MainThread) [homeassistant.setup] Adding wait for wait_import_platforms for ping (d59f46eb2c29d63864bbae53bb7257c1) of 4.35
2025-01-26 10:21:52.918 DEBUG (MainThread) [homeassistant.setup] Phase config_entry_setup for ping (d59f46eb2c29d63864bbae53bb7257c1) took 1.36s (elapsed=5.70s) (wait_time=4.35s)
2025-01-26 10:21:52.918 DEBUG (MainThread) [homeassistant.setup] Adding wait for wait_import_platforms for ping (d863fe9f8df5d1e55236e28a104f5417) of 4.35
2025-01-26 10:21:52.919 DEBUG (MainThread) [homeassistant.setup] Phase config_entry_setup for ping (d863fe9f8df5d1e55236e28a104f5417) took 1.36s (elapsed=5.70s) (wait_time=4.35s)
2025-01-26 10:21:52.919 DEBUG (MainThread) [homeassistant.setup] Adding wait for wait_import_platforms for ping (b3363ee7f1311e4d987bd7cbd47ec8bc) of 4.17
2025-01-26 10:21:52.920 DEBUG (MainThread) [homeassistant.setup] Phase config_entry_setup for ping (b3363ee7f1311e4d987bd7cbd47ec8bc) took 1.55s (elapsed=5.72s) (wait_time=4.17s)
2025-01-26 10:21:52.920 DEBUG (MainThread) [homeassistant.setup] Adding wait for wait_import_platforms for ping (deed88f08529495b3bf9f3ab64341cdc) of 4.14
2025-01-26 10:21:52.920 DEBUG (MainThread) [homeassistant.setup] Phase config_entry_setup for ping (deed88f08529495b3bf9f3ab64341cdc) took 1.56s (elapsed=5.71s) (wait_time=4.14s)
2025-01-26 10:21:52.920 DEBUG (MainThread) [homeassistant.setup] Adding wait for wait_import_platforms for ping (df5bd2e0c826b402f8e53074381969b5) of 4.14
2025-01-26 10:21:52.922 DEBUG (MainThread) [homeassistant.setup] Phase config_entry_setup for ping (df5bd2e0c826b402f8e53074381969b5) took 1.56s (elapsed=5.71s) (wait_time=4.14s)
2025-01-26 10:21:52.922 DEBUG (MainThread) [homeassistant.setup] Adding wait for wait_import_platforms for ping (b72601485d576a8cb687e791500d3035) of 4.15
2025-01-26 10:21:52.923 DEBUG (MainThread) [homeassistant.setup] Phase config_entry_setup for ping (b72601485d576a8cb687e791500d3035) took 1.56s (elapsed=5.71s) (wait_time=4.15s)
2025-01-26 10:21:52.923 DEBUG (MainThread) [homeassistant.setup] Adding wait for wait_import_platforms for ping (05842dd9b89336e327b697e3e7a57963) of 4.15
2025-01-26 10:21:52.925 DEBUG (MainThread) [homeassistant.setup] Phase config_entry_setup for ping (05842dd9b89336e327b697e3e7a57963) took 1.59s (elapsed=5.73s) (wait_time=4.15s)
2025-01-26 10:21:52.925 DEBUG (MainThread) [homeassistant.setup] Adding wait for wait_import_platforms for ping (bfa5ce2afd38a2ce44b58527dd31e11f) of 4.15
2025-01-26 10:21:52.927 DEBUG (MainThread) [homeassistant.setup] Phase config_entry_setup for ping (bfa5ce2afd38a2ce44b58527dd31e11f) took 1.59s (elapsed=5.74s) (wait_time=4.15s)
2025-01-26 10:21:52.927 DEBUG (MainThread) [homeassistant.setup] Adding wait for wait_import_platforms for ping (35077fb6e93b14d67e6f8232827ba5d0) of 4.01
2025-01-26 10:21:52.928 DEBUG (MainThread) [homeassistant.setup] Phase config_entry_setup for ping (35077fb6e93b14d67e6f8232827ba5d0) took 1.71s (elapsed=5.72s) (wait_time=4.01s)
2025-01-26 10:21:52.928 DEBUG (MainThread) [homeassistant.setup] Adding wait for wait_import_platforms for ping (70c59fadac691f9279ab5428d2f60f5f) of 3.44
2025-01-26 10:21:52.929 DEBUG (MainThread) [homeassistant.setup] Phase config_entry_setup for ping (70c59fadac691f9279ab5428d2f60f5f) took 2.28s (elapsed=5.71s) (wait_time=3.44s)
2025-01-26 10:21:52.929 DEBUG (MainThread) [homeassistant.setup] Adding wait for wait_import_platforms for ping (66d7ae771f736d5363d1e164a66b5d95) of 3.08
2025-01-26 10:21:52.929 DEBUG (MainThread) [homeassistant.setup] Phase config_entry_setup for ping (66d7ae771f736d5363d1e164a66b5d95) took 2.63s (elapsed=5.71s) (wait_time=3.08s)
2025-01-26 10:21:52.929 DEBUG (MainThread) [homeassistant.setup] Adding wait for wait_import_platforms for ping (d8aad777ab115274a9839b93758c49fe) of 2.64
2025-01-26 10:21:52.930 DEBUG (MainThread) [homeassistant.setup] Phase config_entry_setup for ping (d8aad777ab115274a9839b93758c49fe) took 3.09s (elapsed=5.73s) (wait_time=2.64s)
2025-01-26 10:21:52.930 DEBUG (MainThread) [homeassistant.setup] Adding wait for wait_import_platforms for ping (4a00a8e9942ff309ab5541d37ef0ccc9) of 2.64
2025-01-26 10:21:52.931 DEBUG (MainThread) [homeassistant.setup] Phase config_entry_setup for ping (4a00a8e9942ff309ab5541d37ef0ccc9) took 3.09s (elapsed=5.74s) (wait_time=2.64s)
2025-01-26 10:21:52.931 DEBUG (MainThread) [homeassistant.setup] Adding wait for wait_import_platforms for ping (9014792aa1de20eed74f73a6d14f0a76) of 2.64
2025-01-26 10:21:52.931 DEBUG (MainThread) [homeassistant.setup] Phase config_entry_setup for ping (9014792aa1de20eed74f73a6d14f0a76) took 3.09s (elapsed=5.74s) (wait_time=2.64s)
2025-01-26 10:21:52.931 DEBUG (MainThread) [homeassistant.setup] Adding wait for wait_import_platforms for ping (d780667188b1481bd5f7f8d517c7a7d9) of 2.64
2025-01-26 10:21:52.932 DEBUG (MainThread) [homeassistant.setup] Phase config_entry_setup for ping (d780667188b1481bd5f7f8d517c7a7d9) took 3.10s (elapsed=5.74s) (wait_time=2.64s)
2025-01-26 10:21:52.933 DEBUG (MainThread) [homeassistant.setup] Adding wait for wait_import_platforms for ping (10e0dcee45219584335eb35cff61c21d) of 2.64
2025-01-26 10:21:52.933 DEBUG (MainThread) [homeassistant.setup] Phase config_entry_setup for ping (10e0dcee45219584335eb35cff61c21d) took 3.10s (elapsed=5.74s) (wait_time=2.64s)
2025-01-26 10:21:52.933 DEBUG (MainThread) [homeassistant.setup] Adding wait for wait_import_platforms for ping (8205998078fad45d335983351275296f) of 2.64
2025-01-26 10:21:52.934 DEBUG (MainThread) [homeassistant.setup] Phase config_entry_setup for ping (8205998078fad45d335983351275296f) took 3.10s (elapsed=5.74s) (wait_time=2.64s)
2025-01-26 10:21:52.934 DEBUG (MainThread) [homeassistant.setup] Adding wait for wait_import_platforms for ping (abcde29f8ea2edb75f485653ab62e944) of 2.64
2025-01-26 10:21:52.934 DEBUG (MainThread) [homeassistant.setup] Phase config_entry_setup for ping (abcde29f8ea2edb75f485653ab62e944) took 3.10s (elapsed=5.74s) (wait_time=2.64s)
2025-01-26 10:21:52.934 DEBUG (MainThread) [homeassistant.setup] Adding wait for wait_import_platforms for ping (ab4c7cf132ac16b766e7f8268bf70797) of 2.64
2025-01-26 10:21:52.935 DEBUG (MainThread) [homeassistant.setup] Phase config_entry_setup for ping (ab4c7cf132ac16b766e7f8268bf70797) took 3.10s (elapsed=5.74s) (wait_time=2.64s)
2025-01-26 10:21:52.935 DEBUG (MainThread) [homeassistant.setup] Adding wait for wait_import_platforms for ping (2518e83a264450369de69ef1682e8442) of 2.64
2025-01-26 10:21:52.936 DEBUG (MainThread) [homeassistant.setup] Phase config_entry_setup for ping (2518e83a264450369de69ef1682e8442) took 3.11s (elapsed=5.75s) (wait_time=2.64s)
2025-01-26 10:21:52.936 DEBUG (MainThread) [homeassistant.setup] Adding wait for wait_import_platforms for ping (5510fd68dccd418f2024e9bc6cbccc68) of 2.58
2025-01-26 10:21:52.936 DEBUG (MainThread) [homeassistant.setup] Phase config_entry_setup for ping (5510fd68dccd418f2024e9bc6cbccc68) took 3.14s (elapsed=5.72s) (wait_time=2.58s)
2025-01-26 10:21:52.936 DEBUG (MainThread) [homeassistant.setup] Adding wait for wait_import_platforms for ping (ae34b38baefb01e061b4bc632238b24a) of 2.58
2025-01-26 10:21:52.937 DEBUG (MainThread) [homeassistant.setup] Phase config_entry_setup for ping (ae34b38baefb01e061b4bc632238b24a) took 3.14s (elapsed=5.72s) (wait_time=2.58s)
2025-01-26 10:21:52.937 DEBUG (MainThread) [homeassistant.setup] Adding wait for wait_import_platforms for ping (d6af4bf3ad777c186ead45a16d2d8d49) of 2.58
2025-01-26 10:21:52.939 DEBUG (MainThread) [homeassistant.setup] Phase config_entry_setup for ping (d6af4bf3ad777c186ead45a16d2d8d49) took 3.14s (elapsed=5.73s) (wait_time=2.58s)
2025-01-26 10:21:52.939 DEBUG (MainThread) [homeassistant.setup] Adding wait for wait_import_platforms for ping (8107c022e69dbc19cdbe93ead8b411d5) of 2.58
2025-01-26 10:21:52.940 DEBUG (MainThread) [homeassistant.setup] Phase config_entry_setup for ping (8107c022e69dbc19cdbe93ead8b411d5) took 3.14s (elapsed=5.73s) (wait_time=2.58s)
2025-01-26 10:21:52.940 DEBUG (MainThread) [homeassistant.setup] Adding wait for wait_import_platforms for ping (43a1c5affc93210b0d46180a3c7c05d8) of 2.58
2025-01-26 10:21:52.940 DEBUG (MainThread) [homeassistant.setup] Phase config_entry_setup for ping (43a1c5affc93210b0d46180a3c7c05d8) took 3.15s (elapsed=5.73s) (wait_time=2.58s)
2025-01-26 10:21:52.940 DEBUG (MainThread) [homeassistant.setup] Adding wait for wait_import_platforms for ping (5599cec8172f92998c0f09e97d5630c1) of 2.51
2025-01-26 10:21:52.941 DEBUG (MainThread) [homeassistant.setup] Phase config_entry_setup for ping (5599cec8172f92998c0f09e97d5630c1) took 3.22s (elapsed=5.73s) (wait_time=2.51s)
2025-01-26 10:21:52.941 DEBUG (MainThread) [homeassistant.setup] Adding wait for wait_import_platforms for ping (01J8XYYRMBEB51QRRBG8JF4GQK) of 1.40
2025-01-26 10:21:52.942 DEBUG (MainThread) [homeassistant.setup] Phase config_entry_setup for ping (01J8XYYRMBEB51QRRBG8JF4GQK) took 4.33s (elapsed=5.72s) (wait_time=1.40s)
2025-01-26 10:21:52.942 DEBUG (MainThread) [homeassistant.setup] Adding wait for wait_import_platforms for ping (33879375c7f05f36587d672372518985) of 1.36
2025-01-26 10:21:52.943 DEBUG (MainThread) [homeassistant.setup] Phase config_entry_setup for ping (33879375c7f05f36587d672372518985) took 4.36s (elapsed=5.72s) (wait_time=1.36s)
2025-01-26 10:21:52.943 DEBUG (MainThread) [homeassistant.setup] Adding wait for wait_import_platforms for ping (b211be9fe32d43bef5ff28866a5eb4e3) of 1.36
2025-01-26 10:21:52.944 DEBUG (MainThread) [homeassistant.setup] Phase config_entry_setup for ping (b211be9fe32d43bef5ff28866a5eb4e3) took 4.37s (elapsed=5.73s) (wait_time=1.36s)
2025-01-26 10:21:52.944 DEBUG (MainThread) [homeassistant.setup] Adding wait for wait_import_platforms for ping (01J61V08GZ7DD9EA5KQ8KAFPNQ) of 1.35
2025-01-26 10:21:52.945 DEBUG (MainThread) [homeassistant.setup] Phase config_entry_setup for ping (01J61V08GZ7DD9EA5KQ8KAFPNQ) took 4.37s (elapsed=5.73s) (wait_time=1.35s)
2025-01-26 10:21:52.945 DEBUG (MainThread) [homeassistant.setup] Adding wait for wait_import_platforms for ping (1018b6985977f13b3c3166b401054448) of 1.35
2025-01-26 10:21:52.946 DEBUG (MainThread) [homeassistant.setup] Phase config_entry_setup for ping (1018b6985977f13b3c3166b401054448) took 4.37s (elapsed=5.73s) (wait_time=1.35s)
2025-01-26 10:21:52.946 DEBUG (MainThread) [homeassistant.setup] Adding wait for wait_import_platforms for ping (01JFP84ZMVVPTG3BVFAC2JDGY7) of 1.35
2025-01-26 10:21:52.948 DEBUG (MainThread) [homeassistant.setup] Phase config_entry_setup for ping (01JFP84ZMVVPTG3BVFAC2JDGY7) took 4.37s (elapsed=5.73s) (wait_time=1.35s)
2025-01-26 10:21:52.948 DEBUG (MainThread) [homeassistant.setup] Adding wait for wait_import_platforms for ping (2a37725f358411b9a79c8e2c709bdf9c) of 1.23
2025-01-26 10:21:52.949 DEBUG (MainThread) [homeassistant.setup] Phase config_entry_setup for ping (2a37725f358411b9a79c8e2c709bdf9c) took 4.50s (elapsed=5.73s) (wait_time=1.23s)
2025-01-26 10:21:52.955 DEBUG (MainThread) [homeassistant.setup] Phase config_entry_setup for dnsip (551a9e66c4a8f36f55dc82728464ad9e) took 0.27s (elapsed=5.93s) (wait_time=5.65s)
2025-01-26 10:21:52.967 DEBUG (MainThread) [homeassistant.setup] Phase config_entry_setup for ping (01JG7WQ0WQW3CGYEJBATH74FFX) took 5.75s (elapsed=5.75s) (wait_time=0.00s)
2025-01-26 10:21:52.968 DEBUG (MainThread) [homeassistant.setup] Phase config_entry_setup for ping (01JB8CM76J9CWPM6FV88CZX6YJ) took 5.75s (elapsed=5.75s) (wait_time=0.00s)
2025-01-26 10:21:52.971 DEBUG (MainThread) [homeassistant.setup] Phase config_entry_setup for ping (01J5Q9FC0VZ4YRC1FQ1PH6PG9S) took 5.75s (elapsed=5.75s) (wait_time=0.00s)
2025-01-26 10:21:52.985 DEBUG (MainThread) [homeassistant.setup] Phase config_entry_setup for echonetlite (ded16f430cb2d875590467afd5e4a573) took 1.25s (elapsed=8.74s) (wait_time=7.49s)
2025-01-26 10:21:52.989 DEBUG (MainThread) [homeassistant.setup] Phase config_entry_setup for ipp (7f58c1f3ac7033701ee8d51268d215a8) took 0.99s (elapsed=5.97s) (wait_time=4.98s)
2025-01-26 10:21:52.990 DEBUG (MainThread) [homeassistant.setup] Phase platform_setup for command_line (546702057472) took 0.15s (elapsed=0.15s) (wait_time=0.00s)
2025-01-26 10:21:53.136 DEBUG (MainThread) [homeassistant.setup] Phase config_entry_setup for octoprint (01J61N47FEJS4BC09JGH8V0VVR) took 0.47s (elapsed=5.98s) (wait_time=5.52s)
2025-01-26 10:21:53.144 DEBUG (MainThread) [homeassistant.setup] Phase config_entry_setup for goodwe (d1ef4b64ac934bc525ed5026323f7edf) took 1.39s (elapsed=8.48s) (wait_time=7.09s)
2025-01-26 10:21:53.182 DEBUG (MainThread) [homeassistant.setup] Adding wait for wait_import_packages for workday (2250e6de1862972f2ebbb36664db51dc) of 4.73
2025-01-26 10:21:53.183 DEBUG (MainThread) [homeassistant.setup] Adding wait for wait_import_platforms for local_todo (6c8f5695e316d7bff87b9c6fe168fc8c) of 4.61
2025-01-26 10:21:53.184 DEBUG (MainThread) [homeassistant.setup] Adding wait for wait_import_platforms for local_todo (9e060cfb0edf6add84dfef513db6b1c5) of 4.61
2025-01-26 10:21:53.184 DEBUG (MainThread) [homeassistant.setup] Adding wait for wait_import_platforms for local_todo (01JGN40889TQJCWAG6K64B2BGE) of 4.61
2025-01-26 10:21:53.184 DEBUG (MainThread) [homeassistant.setup] Adding wait for wait_import_platforms for local_todo (01JBVEYQP3KCR64APJGWF1G4G7) of 4.61
2025-01-26 10:21:53.184 DEBUG (MainThread) [homeassistant.setup] Adding wait for wait_import_platforms for local_todo (4c0b86d996128a9a7f0016e5bdad5887) of 4.61
2025-01-26 10:21:53.184 DEBUG (MainThread) [homeassistant.setup] Adding wait for wait_import_platforms for local_todo (e1381f89562fdbb18c56439b776e0477) of 4.61
2025-01-26 10:21:53.188 DEBUG (MainThread) [homeassistant.setup] Adding wait for wait_import_platforms for google_assistant (c1c663ead3b4aa85441630ffde08d8e0) of 4.58
2025-01-26 10:21:53.189 DEBUG (MainThread) [homeassistant.setup] Phase config_entry_setup for google_assistant (c1c663ead3b4aa85441630ffde08d8e0) took 0.00s (elapsed=4.58s) (wait_time=4.58s)
2025-01-26 10:21:53.192 DEBUG (MainThread) [homeassistant.setup] Adding wait for wait_import_platforms for music_assistant (01JE9SFBHWT5T4X62FGNPPK0YX) of 4.39
2025-01-26 10:21:53.210 DEBUG (MainThread) [homeassistant.setup] Phase config_entry_setup for music_assistant (01JE9SFBHWT5T4X62FGNPPK0YX) took 0.04s (elapsed=4.42s) (wait_time=4.39s)
2025-01-26 10:21:53.214 DEBUG (MainThread) [homeassistant.setup] Adding wait for wait_import_platforms for androidtv_remote (874b4de57d6d13165ef7036429fcfc1f) of 4.35
2025-01-26 10:21:53.216 DEBUG (MainThread) [homeassistant.setup] Phase config_entry_setup for androidtv_remote (874b4de57d6d13165ef7036429fcfc1f) took 0.30s (elapsed=4.65s) (wait_time=4.35s)
2025-01-26 10:21:53.221 DEBUG (MainThread) [homeassistant.setup] Adding wait for wait_import_platforms for broadlink (285221fa63c36143f538133b02832ae6) of 4.32
2025-01-26 10:21:53.222 DEBUG (MainThread) [homeassistant.setup] Phase config_entry_setup for broadlink (285221fa63c36143f538133b02832ae6) took 0.10s (elapsed=4.42s) (wait_time=4.32s)
2025-01-26 10:21:53.233 DEBUG (MainThread) [homeassistant.setup] Adding wait for wait_import_platforms for nut (d177d001c69ee91454ece1ed48fa8832) of 4.08
2025-01-26 10:21:53.237 DEBUG (MainThread) [homeassistant.setup] Phase config_entry_setup for nut (d177d001c69ee91454ece1ed48fa8832) took 0.26s (elapsed=4.35s) (wait_time=4.08s)
2025-01-26 10:21:53.242 DEBUG (MainThread) [homeassistant.setup] Adding wait for wait_import_platforms for anniversaries (01JF8Y5GCX724DMP8FA74RMKJB) of 3.50
2025-01-26 10:21:53.244 DEBUG (MainThread) [homeassistant.setup] Phase platform_setup for anniversaries (546566688896) took 0.00s (elapsed=0.00s) (wait_time=0.00s)
2025-01-26 10:21:53.244 DEBUG (MainThread) [homeassistant.setup] Phase config_entry_setup for anniversaries (01JF8Y5GCX724DMP8FA74RMKJB) took 0.00s (elapsed=3.50s) (wait_time=3.50s)
2025-01-26 10:21:53.244 DEBUG (MainThread) [homeassistant.setup] Adding wait for wait_import_platforms for ios (f94bec2d20bc4d65bb2031437b85b7aa) of 3.42
2025-01-26 10:21:53.245 DEBUG (MainThread) [homeassistant.setup] Phase config_entry_setup for ios (f94bec2d20bc4d65bb2031437b85b7aa) took 0.00s (elapsed=3.42s) (wait_time=3.42s)
2025-01-26 10:21:53.245 DEBUG (MainThread) [homeassistant.setup] Adding wait for wait_import_platforms for anniversaries (01JF8Y65Q9VK3W530HH8Z1B20D) of 3.50
2025-01-26 10:21:53.245 DEBUG (MainThread) [homeassistant.setup] Phase config_entry_setup for anniversaries (01JF8Y65Q9VK3W530HH8Z1B20D) took 0.00s (elapsed=3.50s) (wait_time=3.50s)
2025-01-26 10:21:53.246 DEBUG (MainThread) [homeassistant.setup] Adding wait for wait_import_platforms for anniversaries (01JF8Y6RRMXJWY61BD16J1Y9AN) of 3.50
2025-01-26 10:21:53.246 DEBUG (MainThread) [homeassistant.setup] Phase config_entry_setup for anniversaries (01JF8Y6RRMXJWY61BD16J1Y9AN) took 0.00s (elapsed=3.50s) (wait_time=3.50s)
2025-01-26 10:21:53.246 DEBUG (MainThread) [homeassistant.setup] Adding wait for wait_import_platforms for anniversaries (01JF8Y7DSEN0WZE5QA46Q6WN2J) of 3.50
2025-01-26 10:21:53.247 DEBUG (MainThread) [homeassistant.setup] Phase config_entry_setup for anniversaries (01JF8Y7DSEN0WZE5QA46Q6WN2J) took 0.00s (elapsed=3.51s) (wait_time=3.50s)
2025-01-26 10:21:53.247 DEBUG (MainThread) [homeassistant.setup] Adding wait for wait_import_platforms for anniversaries (01JF8Y8ANQYG3484EA9496BDM8) of 3.51
2025-01-26 10:21:53.247 DEBUG (MainThread) [homeassistant.setup] Phase config_entry_setup for anniversaries (01JF8Y8ANQYG3484EA9496BDM8) took 0.00s (elapsed=3.51s) (wait_time=3.51s)
2025-01-26 10:21:53.247 DEBUG (MainThread) [homeassistant.setup] Adding wait for wait_import_platforms for anniversaries (01JF8Y8X7C2DC18PSW59189W6J) of 3.51
2025-01-26 10:21:53.248 DEBUG (MainThread) [homeassistant.setup] Phase config_entry_setup for anniversaries (01JF8Y8X7C2DC18PSW59189W6J) took 0.00s (elapsed=3.51s) (wait_time=3.51s)
2025-01-26 10:21:53.248 DEBUG (MainThread) [homeassistant.setup] Adding wait for wait_import_platforms for anniversaries (01JF8Y9GAYR8YCHGGF7ST12W6X) of 3.51
2025-01-26 10:21:53.249 DEBUG (MainThread) [homeassistant.setup] Phase config_entry_setup for anniversaries (01JF8Y9GAYR8YCHGGF7ST12W6X) took 0.00s (elapsed=3.51s) (wait_time=3.51s)
2025-01-26 10:21:53.249 DEBUG (MainThread) [homeassistant.setup] Adding wait for wait_import_platforms for anniversaries (01JF8YA3WV4PPD83NQ9ZC1GFXK) of 3.51
2025-01-26 10:21:53.249 DEBUG (MainThread) [homeassistant.setup] Phase config_entry_setup for anniversaries (01JF8YA3WV4PPD83NQ9ZC1GFXK) took 0.00s (elapsed=3.51s) (wait_time=3.51s)
2025-01-26 10:21:53.249 DEBUG (MainThread) [homeassistant.setup] Adding wait for wait_import_platforms for anniversaries (01JF8YAQMJE6DMTHNRRTFV33SC) of 3.51
2025-01-26 10:21:53.250 DEBUG (MainThread) [homeassistant.setup] Phase config_entry_setup for anniversaries (01JF8YAQMJE6DMTHNRRTFV33SC) took 0.00s (elapsed=3.51s) (wait_time=3.51s)
2025-01-26 10:21:53.250 DEBUG (MainThread) [homeassistant.setup] Adding wait for wait_import_platforms for anniversaries (01JF8YB8WGF0TFDP5Z15PQ27JQ) of 3.51
2025-01-26 10:21:53.251 DEBUG (MainThread) [homeassistant.setup] Phase config_entry_setup for anniversaries (01JF8YB8WGF0TFDP5Z15PQ27JQ) took 0.00s (elapsed=3.51s) (wait_time=3.51s)
2025-01-26 10:21:53.251 DEBUG (MainThread) [homeassistant.setup] Adding wait for wait_import_platforms for anniversaries (01JF8YBYMA1MDSY6JHYZ8E3SSG) of 3.51
2025-01-26 10:21:53.252 DEBUG (MainThread) [homeassistant.setup] Phase config_entry_setup for anniversaries (01JF8YBYMA1MDSY6JHYZ8E3SSG) took 0.00s (elapsed=3.51s) (wait_time=3.51s)
2025-01-26 10:21:53.252 DEBUG (MainThread) [homeassistant.setup] Adding wait for wait_import_platforms for anniversaries (01JF8YCGR7BGH477522QH7NV97) of 3.51
2025-01-26 10:21:53.253 DEBUG (MainThread) [homeassistant.setup] Phase config_entry_setup for anniversaries (01JF8YCGR7BGH477522QH7NV97) took 0.00s (elapsed=3.51s) (wait_time=3.51s)
2025-01-26 10:21:53.253 DEBUG (MainThread) [homeassistant.setup] Adding wait for wait_import_platforms for anniversaries (01JF8YD49WYE21C1HAKNMRRBPN) of 3.51
2025-01-26 10:21:53.253 DEBUG (MainThread) [homeassistant.setup] Phase config_entry_setup for anniversaries (01JF8YD49WYE21C1HAKNMRRBPN) took 0.00s (elapsed=3.51s) (wait_time=3.51s)
2025-01-26 10:21:53.253 DEBUG (MainThread) [homeassistant.setup] Adding wait for wait_import_platforms for anniversaries (01JF8YDSZJZCMAZYC6PMWV20DX) of 3.51
2025-01-26 10:21:53.254 DEBUG (MainThread) [homeassistant.setup] Phase config_entry_setup for anniversaries (01JF8YDSZJZCMAZYC6PMWV20DX) took 0.00s (elapsed=3.51s) (wait_time=3.51s)
2025-01-26 10:21:53.254 DEBUG (MainThread) [homeassistant.setup] Adding wait for wait_import_platforms for anniversaries (01JF8YF9CX936TGKMNY7PGKF95) of 3.51
2025-01-26 10:21:53.255 DEBUG (MainThread) [homeassistant.setup] Phase config_entry_setup for anniversaries (01JF8YF9CX936TGKMNY7PGKF95) took 0.00s (elapsed=3.51s) (wait_time=3.51s)
2025-01-26 10:21:53.255 DEBUG (MainThread) [homeassistant.setup] Adding wait for wait_import_platforms for anniversaries (01JF8YG1EPQVPRSK87Q3KCX8FR) of 3.51
2025-01-26 10:21:53.255 DEBUG (MainThread) [homeassistant.setup] Phase config_entry_setup for anniversaries (01JF8YG1EPQVPRSK87Q3KCX8FR) took 0.00s (elapsed=3.51s) (wait_time=3.51s)
2025-01-26 10:21:53.263 DEBUG (MainThread) [homeassistant.setup] Phase platform_setup for ios (546649598656) took 0.00s (elapsed=0.00s) (wait_time=0.00s)
2025-01-26 10:21:53.265 DEBUG (MainThread) [homeassistant.setup] Adding wait for wait_import_platforms for proximity (5078f7eaeb64a5ce56e07be607122e46) of 3.42
2025-01-26 10:21:53.268 DEBUG (MainThread) [homeassistant.setup] Phase config_entry_setup for proximity (5078f7eaeb64a5ce56e07be607122e46) took 0.00s (elapsed=3.43s) (wait_time=3.42s)
2025-01-26 10:21:53.268 DEBUG (MainThread) [homeassistant.setup] Adding wait for wait_import_platforms for proximity (6052d48d8fd7e0628ac6fd57e161124f) of 3.43
2025-01-26 10:21:53.269 DEBUG (MainThread) [homeassistant.setup] Phase config_entry_setup for proximity (6052d48d8fd7e0628ac6fd57e161124f) took 0.00s (elapsed=3.43s) (wait_time=3.43s)
2025-01-26 10:21:53.269 DEBUG (MainThread) [homeassistant.setup] Adding wait for wait_import_platforms for proximity (01J93E2DAEQXH9H64FFJJMERFA) of 3.43
2025-01-26 10:21:53.271 DEBUG (MainThread) [homeassistant.setup] Phase config_entry_setup for proximity (01J93E2DAEQXH9H64FFJJMERFA) took 0.00s (elapsed=3.43s) (wait_time=3.43s)
2025-01-26 10:21:53.280 DEBUG (MainThread) [homeassistant.setup] Adding wait for wait_import_platforms for androidtv (e10ef96e0123e3359a21b85a781e421b) of 3.42
2025-01-26 10:21:53.282 DEBUG (MainThread) [homeassistant.setup] Phase config_entry_setup for androidtv (e10ef96e0123e3359a21b85a781e421b) took 1.97s (elapsed=5.40s) (wait_time=3.42s)
2025-01-26 10:21:53.296 DEBUG (MainThread) [homeassistant.setup] Adding wait for wait_import_platforms for cast (cf2ef77a1a052b9dcefbd5203b15d604) of 3.41
2025-01-26 10:21:53.297 DEBUG (MainThread) [homeassistant.setup] Phase config_entry_setup for cast (cf2ef77a1a052b9dcefbd5203b15d604) took 0.00s (elapsed=3.41s) (wait_time=3.41s)
2025-01-26 10:21:53.307 DEBUG (MainThread) [homeassistant.setup] Adding wait for wait_import_platforms for grocy (e39a2d90eb1ad82cd2771bc4c682d56b) of 3.05
2025-01-26 10:21:53.317 DEBUG (MainThread) [homeassistant.setup] Adding wait for wait_import_platforms for waqi (7624b3eadc5448281ef944f67c5b9b93) of 2.65
2025-01-26 10:21:53.320 DEBUG (MainThread) [homeassistant.setup] Phase config_entry_setup for waqi (7624b3eadc5448281ef944f67c5b9b93) took 6.82s (elapsed=9.46s) (wait_time=2.65s)
2025-01-26 10:21:53.329 DEBUG (MainThread) [homeassistant.setup] Adding wait for wait_import_platforms for qnap (8df56e68c21d1b3bbbd0d76ea00048eb) of 1.78
2025-01-26 10:21:53.330 DEBUG (MainThread) [homeassistant.setup] Adding wait for wait_import_platforms for teamtracker (a5dc61aca0eb0baa787ed89344e215c3) of 1.54
2025-01-26 10:21:53.332 DEBUG (MainThread) [homeassistant.setup] Phase config_entry_setup for teamtracker (a5dc61aca0eb0baa787ed89344e215c3) took 6.54s (elapsed=8.08s) (wait_time=1.54s)
2025-01-26 10:21:53.336 DEBUG (MainThread) [homeassistant.setup] Adding wait for wait_import_platforms for teamtracker (726da9678e1158eef7a032f718fa6773) of 1.19
2025-01-26 10:21:53.338 DEBUG (MainThread) [homeassistant.setup] Phase config_entry_setup for teamtracker (726da9678e1158eef7a032f718fa6773) took 6.90s (elapsed=8.08s) (wait_time=1.19s)
2025-01-26 10:21:53.338 DEBUG (MainThread) [homeassistant.setup] Adding wait for wait_import_platforms for teamtracker (a9ffb110f95583f1d5c24859790de508) of 0.53
2025-01-26 10:21:53.340 DEBUG (MainThread) [homeassistant.setup] Phase config_entry_setup for teamtracker (a9ffb110f95583f1d5c24859790de508) took 7.56s (elapsed=8.09s) (wait_time=0.53s)
2025-01-26 10:21:53.358 DEBUG (MainThread) [homeassistant.setup] Adding wait for wait_import_platforms for esphome (01JG1BPMDSP2KTM9WTP6AJ0RJG) of 1.32
2025-01-26 10:21:53.362 DEBUG (MainThread) [homeassistant.setup] Phase config_entry_setup for esphome (01JG1BPMDSP2KTM9WTP6AJ0RJG) took 0.01s (elapsed=1.32s) (wait_time=1.32s)
2025-01-26 10:21:53.362 DEBUG (MainThread) [homeassistant.setup] Adding wait for wait_import_platforms for esphome (01JJ3BPYRWS5JJHW1WJ490G4J9) of 1.32
2025-01-26 10:21:53.364 DEBUG (MainThread) [homeassistant.setup] Phase config_entry_setup for esphome (01JJ3BPYRWS5JJHW1WJ490G4J9) took 0.01s (elapsed=1.33s) (wait_time=1.32s)
2025-01-26 10:21:53.369 DEBUG (MainThread) [homeassistant.setup] Adding wait for wait_import_platforms for esphome (01JB89ZAF3104QHKAY0P79E21C) of 1.33
2025-01-26 10:21:53.372 DEBUG (MainThread) [homeassistant.setup] Phase config_entry_setup for esphome (01JB89ZAF3104QHKAY0P79E21C) took 0.01s (elapsed=1.33s) (wait_time=1.33s)
2025-01-26 10:21:53.373 DEBUG (MainThread) [homeassistant.setup] Adding wait for wait_import_platforms for esphome (8da91a4284089ca0b4bf055622d48d0c) of 1.33
2025-01-26 10:21:53.376 DEBUG (MainThread) [homeassistant.setup] Phase config_entry_setup for esphome (8da91a4284089ca0b4bf055622d48d0c) took 0.01s (elapsed=1.34s) (wait_time=1.33s)
2025-01-26 10:21:53.376 DEBUG (MainThread) [homeassistant.setup] Adding wait for wait_import_platforms for esphome (01JGDBFBJ7EXYQAFNWE1WRXJGV) of 1.33
2025-01-26 10:21:53.377 DEBUG (MainThread) [homeassistant.setup] Phase config_entry_setup for esphome (01JGDBFBJ7EXYQAFNWE1WRXJGV) took 0.01s (elapsed=1.34s) (wait_time=1.33s)
2025-01-26 10:21:53.389 DEBUG (MainThread) [homeassistant.setup] Adding wait for wait_import_platforms for esphome (01J5Q1EHPMT4F5C7HW6MDAB61X) of 1.35
2025-01-26 10:21:53.409 DEBUG (MainThread) [homeassistant.setup] Phase config_entry_setup for esphome (01J5Q1EHPMT4F5C7HW6MDAB61X) took 0.02s (elapsed=1.37s) (wait_time=1.35s)
2025-01-26 10:21:53.410 DEBUG (MainThread) [homeassistant.setup] Adding wait for wait_import_platforms for esphome (01J6NTME7VEE0DNJ0Z24QK3BKP) of 1.37
2025-01-26 10:21:53.412 DEBUG (MainThread) [homeassistant.setup] Phase config_entry_setup for esphome (01J6NTME7VEE0DNJ0Z24QK3BKP) took 0.01s (elapsed=1.37s) (wait_time=1.37s)
2025-01-26 10:21:53.412 DEBUG (MainThread) [homeassistant.setup] Adding wait for wait_import_platforms for esphome (01JE2M3AHCH5JWJQBY10B172VR) of 1.37
2025-01-26 10:21:53.415 DEBUG (MainThread) [homeassistant.setup] Phase config_entry_setup for esphome (01JE2M3AHCH5JWJQBY10B172VR) took 0.01s (elapsed=1.38s) (wait_time=1.37s)
2025-01-26 10:21:53.415 DEBUG (MainThread) [homeassistant.setup] Adding wait for wait_import_platforms for esphome (01JHEJSRR175AMPVPSSYHCFQ9R) of 1.37
2025-01-26 10:21:53.418 DEBUG (MainThread) [homeassistant.setup] Phase config_entry_setup for esphome (01JHEJSRR175AMPVPSSYHCFQ9R) took 0.01s (elapsed=1.38s) (wait_time=1.37s)
2025-01-26 10:21:53.437 DEBUG (MainThread) [homeassistant.setup] Adding wait for wait_import_platforms for met (8002d368770cef8f4824a3b9de111870) of 1.34
2025-01-26 10:21:53.438 INFO (MainThread) [homeassistant.setup] Setting up weather
2025-01-26 10:21:53.438 INFO (MainThread) [homeassistant.setup] Setup of domain weather took 0.00 seconds
2025-01-26 10:21:53.439 DEBUG (MainThread) [homeassistant.setup] Adding wait for wait_base_component for met (8002d368770cef8f4824a3b9de111870) of 0.00
2025-01-26 10:21:53.440 DEBUG (MainThread) [homeassistant.setup] Phase config_entry_setup for met (8002d368770cef8f4824a3b9de111870) took 7.31s (elapsed=8.64s) (wait_time=1.34s)
2025-01-26 10:21:53.483 INFO (MainThread) [homeassistant.setup] Setting up places
2025-01-26 10:21:53.484 INFO (MainThread) [homeassistant.setup] Setup of domain places took 0.00 seconds
2025-01-26 10:21:53.484 DEBUG (MainThread) [homeassistant.setup] Adding wait for wait_import_platforms for accuweather (a76e83cd9e96ff139008bd9887eccdea) of 1.37
2025-01-26 10:21:53.516 DEBUG (MainThread) [homeassistant.setup] Phase config_entry_setup for accuweather (a76e83cd9e96ff139008bd9887eccdea) took 3.69s (elapsed=5.06s) (wait_time=1.37s)
2025-01-26 10:21:53.553 DEBUG (MainThread) [homeassistant.setup] Adding wait for wait_import_platforms for plant (bba6883bde8d89465a8f3b37b7d57455) of 1.37
2025-01-26 10:21:53.564 DEBUG (MainThread) [homeassistant.setup] Phase config_entry_setup for plant (bba6883bde8d89465a8f3b37b7d57455) took 0.01s (elapsed=1.38s) (wait_time=1.37s)
2025-01-26 10:21:53.578 DEBUG (MainThread) [homeassistant.setup] Adding wait for wait_import_platforms for plant (e2db275a11d5b987e9d81d748f747bb1) of 1.40
2025-01-26 10:21:53.587 DEBUG (MainThread) [homeassistant.setup] Phase config_entry_setup for plant (e2db275a11d5b987e9d81d748f747bb1) took 0.01s (elapsed=1.41s) (wait_time=1.40s)
2025-01-26 10:21:53.587 DEBUG (MainThread) [homeassistant.setup] Adding wait for wait_import_platforms for plant (bd687759e64c1978fe133049b110878c) of 1.41
2025-01-26 10:21:53.594 DEBUG (MainThread) [homeassistant.setup] Phase config_entry_setup for plant (bd687759e64c1978fe133049b110878c) took 0.01s (elapsed=1.41s) (wait_time=1.41s)
2025-01-26 10:21:53.595 DEBUG (MainThread) [homeassistant.setup] Adding wait for wait_import_platforms for plant (01JAM0QCX0T2QFP99PDM5WPE5E) of 1.41
2025-01-26 10:21:53.609 DEBUG (MainThread) [homeassistant.setup] Phase config_entry_setup for plant (01JAM0QCX0T2QFP99PDM5WPE5E) took 0.01s (elapsed=1.43s) (wait_time=1.41s)
2025-01-26 10:21:53.610 DEBUG (MainThread) [homeassistant.setup] Adding wait for wait_import_platforms for plant (01JAM18PZTSKXK5QC85C7Z12E0) of 1.43
2025-01-26 10:21:53.617 DEBUG (MainThread) [homeassistant.setup] Phase config_entry_setup for plant (01JAM18PZTSKXK5QC85C7Z12E0) took 0.01s (elapsed=1.44s) (wait_time=1.43s)
2025-01-26 10:21:53.617 DEBUG (MainThread) [homeassistant.setup] Adding wait for wait_import_platforms for plant (01JAM1DA5HW5BXGJ11KSMN7ZG5) of 1.44
2025-01-26 10:21:53.627 DEBUG (MainThread) [homeassistant.setup] Phase config_entry_setup for plant (01JAM1DA5HW5BXGJ11KSMN7ZG5) took 0.01s (elapsed=1.45s) (wait_time=1.44s)
2025-01-26 10:21:53.627 DEBUG (MainThread) [homeassistant.setup] Adding wait for wait_import_platforms for plant (01JAM1HST8XTC4S2PNSW21AVEP) of 1.45
2025-01-26 10:21:53.635 DEBUG (MainThread) [homeassistant.setup] Phase config_entry_setup for plant (01JAM1HST8XTC4S2PNSW21AVEP) took 0.01s (elapsed=1.45s) (wait_time=1.45s)
2025-01-26 10:21:53.635 DEBUG (MainThread) [homeassistant.setup] Adding wait for wait_import_platforms for plant (01JAM1NYWDN72A7TRN5S9WXX08) of 1.45
2025-01-26 10:21:53.642 DEBUG (MainThread) [homeassistant.setup] Phase config_entry_setup for plant (01JAM1NYWDN72A7TRN5S9WXX08) took 0.01s (elapsed=1.46s) (wait_time=1.45s)
2025-01-26 10:21:53.646 DEBUG (MainThread) [homeassistant.setup] Adding wait for wait_import_platforms for mqtt (c01b4147569b496c9cddd7b8872351d3) of 1.46
2025-01-26 10:21:53.648 DEBUG (MainThread) [homeassistant.setup] Adding wait for wait_import_platforms for sensibo (fd1cefb9b28bb226e7abaa62f88f828c) of 0.87
2025-01-26 10:21:53.661 DEBUG (MainThread) [homeassistant.setup] Phase config_entry_setup for sensibo (fd1cefb9b28bb226e7abaa62f88f828c) took 8.12s (elapsed=8.99s) (wait_time=0.87s)
2025-01-26 10:21:53.685 DEBUG (MainThread) [homeassistant.setup] Adding wait for wait_import_platforms for public_transport_victoria (158fb05e88ffff8cf87b347380930c84) of 0.56
2025-01-26 10:21:53.687 DEBUG (MainThread) [homeassistant.setup] Phase config_entry_setup for public_transport_victoria (158fb05e88ffff8cf87b347380930c84) took 6.10s (elapsed=6.66s) (wait_time=0.56s)
2025-01-26 10:21:53.687 DEBUG (MainThread) [homeassistant.setup] Adding wait for wait_import_packages for workday (2250e6de1862972f2ebbb36664db51dc) of 0.50
2025-01-26 10:21:53.719 DEBUG (MainThread) [homeassistant.setup] Phase config_entry_setup for mqtt (c01b4147569b496c9cddd7b8872351d3) took 0.26s (elapsed=9.26s) (wait_time=9.00s)
2025-01-26 10:21:53.722 DEBUG (MainThread) [homeassistant.setup] Adding wait for wait_import_packages for local_todo (e1381f89562fdbb18c56439b776e0477) of 0.54
2025-01-26 10:21:53.730 DEBUG (MainThread) [homeassistant.setup] Adding wait for wait_import_packages for local_todo (4c0b86d996128a9a7f0016e5bdad5887) of 0.54
2025-01-26 10:21:53.801 DEBUG (MainThread) [homeassistant.setup] Adding wait for wait_import_packages for local_todo (9e060cfb0edf6add84dfef513db6b1c5) of 0.61
2025-01-26 10:21:53.824 DEBUG (MainThread) [homeassistant.setup] Phase config_entry_setup for local_todo (e1381f89562fdbb18c56439b776e0477) took 0.22s (elapsed=5.37s) (wait_time=5.15s)
2025-01-26 10:21:53.840 DEBUG (MainThread) [homeassistant.setup] Phase config_entry_setup for local_todo (4c0b86d996128a9a7f0016e5bdad5887) took 0.23s (elapsed=5.38s) (wait_time=5.16s)
2025-01-26 10:21:53.842 DEBUG (MainThread) [homeassistant.setup] Adding wait for wait_import_packages for local_todo (6c8f5695e316d7bff87b9c6fe168fc8c) of 0.65
2025-01-26 10:21:53.853 DEBUG (MainThread) [homeassistant.setup] Adding wait for wait_import_packages for local_todo (01JBVEYQP3KCR64APJGWF1G4G7) of 0.67
2025-01-26 10:21:53.854 DEBUG (MainThread) [homeassistant.setup] Adding wait for wait_import_packages for local_todo (01JGN40889TQJCWAG6K64B2BGE) of 0.67
2025-01-26 10:21:53.863 DEBUG (MainThread) [homeassistant.setup] Phase config_entry_setup for local_todo (9e060cfb0edf6add84dfef513db6b1c5) took 0.18s (elapsed=5.41s) (wait_time=5.23s)
2025-01-26 10:21:53.872 INFO (MainThread) [homeassistant.setup] Setting up spook
2025-01-26 10:21:53.872 INFO (MainThread) [homeassistant.setup] Setup of domain spook took 0.00 seconds
2025-01-26 10:21:53.873 DEBUG (MainThread) [homeassistant.setup] Phase config_entry_setup for local_todo (6c8f5695e316d7bff87b9c6fe168fc8c) took 0.15s (elapsed=5.42s) (wait_time=5.27s)
2025-01-26 10:21:53.878 DEBUG (MainThread) [homeassistant.setup] Phase config_entry_setup for local_todo (01JBVEYQP3KCR64APJGWF1G4G7) took 0.14s (elapsed=5.42s) (wait_time=5.28s)
2025-01-26 10:21:53.878 DEBUG (MainThread) [homeassistant.setup] Phase config_entry_setup for local_todo (01JGN40889TQJCWAG6K64B2BGE) took 0.14s (elapsed=5.42s) (wait_time=5.28s)
2025-01-26 10:21:53.882 DEBUG (MainThread) [homeassistant.setup] Adding wait for wait_import_platforms for places (01JHPNCAXSWHAFM1CS3YH9T20C) of 0.40
2025-01-26 10:21:53.882 INFO (MainThread) [homeassistant.setup] Setting up bluetooth_adapters
2025-01-26 10:21:53.883 INFO (MainThread) [homeassistant.setup] Setup of domain bluetooth_adapters took 0.00 seconds
2025-01-26 10:21:53.886 DEBUG (MainThread) [homeassistant.setup] Adding wait for wait_import_platforms for places (01JHPNDSK95KT4X16HF02A8YJW) of 0.40
2025-01-26 10:21:53.905 DEBUG (MainThread) [homeassistant.setup] Adding wait for wait_import_platforms for workday (2250e6de1862972f2ebbb36664db51dc) of 0.22
2025-01-26 10:21:53.942 DEBUG (MainThread) [homeassistant.setup] Phase config_entry_setup for places (01JHPNCAXSWHAFM1CS3YH9T20C) took 0.06s (elapsed=0.46s) (wait_time=0.40s)
2025-01-26 10:21:53.944 DEBUG (MainThread) [homeassistant.setup] Phase config_entry_setup for workday (2250e6de1862972f2ebbb36664db51dc) took 4.77s (elapsed=5.49s) (wait_time=0.72s)
2025-01-26 10:21:53.944 DEBUG (MainThread) [homeassistant.setup] Phase config_entry_setup for places (01JHPNDSK95KT4X16HF02A8YJW) took 0.06s (elapsed=0.46s) (wait_time=0.40s)
2025-01-26 10:21:53.984 INFO (MainThread) [homeassistant.setup] Setting up tasmota