-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbot.log
More file actions
1734 lines (1732 loc) · 205 KB
/
Copy pathbot.log
File metadata and controls
1734 lines (1732 loc) · 205 KB
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-09-12 19:49:01,292 - discord.client - WARNING - PyNaCl is not installed, voice will NOT be supported
2025-09-12 19:49:01,295 - discord.client - INFO - logging in using static token
2025-09-12 19:49:01,778 - musicbot - INFO - Connecting to Lavalink at 192.168.0.8:2333
2025-09-12 19:49:01,810 - musicbot - INFO - Lavalink node connected successfully!
2025-09-12 19:49:01,918 - wavelink.websocket - DEBUG - Node(identifier=_DvqKFvnnW0cyYx8, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=0) dispatched the event 'on_wavelink_node_ready'
2025-09-12 19:49:01,919 - musicbot - INFO - Wavelink node '_DvqKFvnnW0cyYx8' is ready!
2025-09-12 19:49:01,984 - wavelink.websocket - DEBUG - Node(identifier=_DvqKFvnnW0cyYx8, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=0) dispatched the event 'on_wavelink_stats_update'
2025-09-12 19:49:02,204 - discord.gateway - INFO - Shard ID None has connected to Gateway (Session ID: 0b683d067f07736c5e56ad3e1f2e0501).
2025-09-12 19:49:04,229 - musicbot - INFO - Rat_Artist#4817 has connected to Discord!
2025-09-12 19:49:04,229 - musicbot - INFO - Bot is in 4 guilds
2025-09-12 19:49:17,331 - musicbot - INFO - Play command received: 'https://www.youtube.com/watch?v=WtO3AHMBePY&ab_channel=1Mushy' from user berry_rat
2025-09-12 19:49:18,330 - wavelink.player - DEBUG - Player 376404888579604485 is dispatching VOICE_UPDATE.
2025-09-12 19:49:18,339 - musicbot - INFO - Player status - Playing: False, Paused: False, Queue length: 0
2025-09-12 19:49:18,339 - musicbot - INFO - Searching for: https://www.youtube.com/watch?v=WtO3AHMBePY&ab_channel=1Mushy
2025-09-12 19:49:18,341 - musicbot - INFO - Query is URL, letting Lavalink handle directly
2025-09-12 19:49:18,342 - wavelink.websocket - DEBUG - Node(identifier=_DvqKFvnnW0cyYx8, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 19:49:20,223 - musicbot - INFO - Search returned 1 results
2025-09-12 19:49:20,224 - musicbot - INFO - Handling as single track
2025-09-12 19:49:20,224 - musicbot - INFO - Handling single track: Dancing triangle pumped up kicks Tongo #DancingTriangle
2025-09-12 19:49:20,225 - musicbot - INFO - Player is free, playing immediately: Dancing triangle pumped up kicks Tongo #DancingTriangle
2025-09-12 19:49:20,235 - wavelink.websocket - DEBUG - Node(identifier=_DvqKFvnnW0cyYx8, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 19:49:20,239 - wavelink.websocket - DEBUG - Node(identifier=_DvqKFvnnW0cyYx8, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 19:49:20,241 - wavelink.websocket - DEBUG - Node(identifier=_DvqKFvnnW0cyYx8, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_track_start'
2025-09-12 19:49:20,241 - musicbot - INFO - Track started: Dancing triangle pumped up kicks Tongo #DancingTriangle
2025-09-12 19:49:20,245 - wavelink.websocket - DEBUG - Node(identifier=_DvqKFvnnW0cyYx8, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 19:49:20,247 - musicbot - INFO - Successfully started playing: Dancing triangle pumped up kicks Tongo #DancingTriangle
2025-09-12 19:49:21,925 - wavelink.websocket - DEBUG - Node(identifier=_DvqKFvnnW0cyYx8, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_track_exception'
2025-09-12 19:49:21,945 - wavelink.websocket - DEBUG - Node(identifier=_DvqKFvnnW0cyYx8, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_track_end'
2025-09-12 19:49:21,946 - musicbot - INFO - Track ended: Dancing triangle pumped up kicks Tongo #DancingTriangle - Reason: loadFailed
2025-09-12 19:49:36,646 - wavelink.player - DEBUG - Disregarding Inactivity Check Task <Task-29> as it was previously cancelled.
2025-09-12 19:49:36,659 - wavelink.websocket - DEBUG - Node(identifier=_DvqKFvnnW0cyYx8, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=0) dispatched the event 'on_wavelink_websocket_closed'
2025-09-12 19:49:36,659 - wavelink.websocket - DEBUG - Node(identifier=_DvqKFvnnW0cyYx8, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=0) dispatched the event 'on_wavelink_player_update'
2025-09-12 19:49:36,660 - musicbot - WARNING - Websocket closed - Code: DiscordVoiceCloseType.CLOSE_NORMAL, Reason:
2025-09-12 19:49:40,829 - musicbot - INFO - Play command received: 'https://www.youtube.com/watch?v=WtO3AHMBePY&ab_channel=1Mushy' from user berry_rat
2025-09-12 19:49:41,210 - wavelink.player - DEBUG - Player 376404888579604485 is dispatching VOICE_UPDATE.
2025-09-12 19:49:41,215 - musicbot - INFO - Player status - Playing: False, Paused: False, Queue length: 0
2025-09-12 19:49:41,216 - musicbot - INFO - Searching for: https://www.youtube.com/watch?v=WtO3AHMBePY&ab_channel=1Mushy
2025-09-12 19:49:41,216 - musicbot - INFO - Query is URL, letting Lavalink handle directly
2025-09-12 19:49:41,239 - wavelink.websocket - DEBUG - Node(identifier=_DvqKFvnnW0cyYx8, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 19:49:41,321 - musicbot - INFO - Search returned 1 results
2025-09-12 19:49:41,322 - musicbot - INFO - Handling as single track
2025-09-12 19:49:41,322 - musicbot - INFO - Handling single track: Dancing triangle pumped up kicks Tongo #DancingTriangle
2025-09-12 19:49:41,322 - musicbot - INFO - Player is free, playing immediately: Dancing triangle pumped up kicks Tongo #DancingTriangle
2025-09-12 19:49:41,328 - wavelink.websocket - DEBUG - Node(identifier=_DvqKFvnnW0cyYx8, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 19:49:41,329 - wavelink.websocket - DEBUG - Node(identifier=_DvqKFvnnW0cyYx8, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 19:49:41,329 - wavelink.websocket - DEBUG - Node(identifier=_DvqKFvnnW0cyYx8, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_track_start'
2025-09-12 19:49:41,330 - wavelink.websocket - DEBUG - Node(identifier=_DvqKFvnnW0cyYx8, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 19:49:41,330 - musicbot - INFO - Track started: Dancing triangle pumped up kicks Tongo #DancingTriangle
2025-09-12 19:49:41,331 - musicbot - INFO - Successfully started playing: Dancing triangle pumped up kicks Tongo #DancingTriangle
2025-09-12 19:49:41,955 - wavelink.websocket - DEBUG - Node(identifier=_DvqKFvnnW0cyYx8, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_track_exception'
2025-09-12 19:49:41,963 - wavelink.websocket - DEBUG - Node(identifier=_DvqKFvnnW0cyYx8, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_track_end'
2025-09-12 19:49:41,963 - musicbot - INFO - Track ended: Dancing triangle pumped up kicks Tongo #DancingTriangle - Reason: loadFailed
2025-09-12 19:50:01,840 - wavelink.websocket - DEBUG - Node(identifier=_DvqKFvnnW0cyYx8, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_stats_update'
2025-09-12 19:50:30,811 - wavelink.player - DEBUG - Disregarding Inactivity Check Task <Task-44> as it was previously cancelled.
2025-09-12 19:50:30,821 - wavelink.websocket - DEBUG - Node(identifier=_DvqKFvnnW0cyYx8, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=0) dispatched the event 'on_wavelink_websocket_closed'
2025-09-12 19:50:30,822 - wavelink.websocket - DEBUG - Node(identifier=_DvqKFvnnW0cyYx8, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=0) dispatched the event 'on_wavelink_player_update'
2025-09-12 19:50:30,822 - musicbot - WARNING - Websocket closed - Code: DiscordVoiceCloseType.CLOSE_NORMAL, Reason:
2025-09-12 19:51:01,835 - wavelink.websocket - DEBUG - Node(identifier=_DvqKFvnnW0cyYx8, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=0) dispatched the event 'on_wavelink_stats_update'
2025-09-12 19:51:33,749 - musicbot - INFO - Play command received: 'https://www.youtube.com/watch?v=WtO3AHMBePY&ab_channel=1Mushy' from user berry_rat
2025-09-12 19:51:34,149 - wavelink.player - DEBUG - Player 376404888579604485 is dispatching VOICE_UPDATE.
2025-09-12 19:51:34,157 - musicbot - INFO - Player status - Playing: False, Paused: False, Queue length: 0
2025-09-12 19:51:34,157 - musicbot - INFO - Searching for: https://www.youtube.com/watch?v=WtO3AHMBePY&ab_channel=1Mushy
2025-09-12 19:51:34,158 - musicbot - INFO - Query is URL, letting Lavalink handle directly
2025-09-12 19:51:34,175 - wavelink.websocket - DEBUG - Node(identifier=_DvqKFvnnW0cyYx8, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 19:51:34,243 - musicbot - INFO - Search returned 1 results
2025-09-12 19:51:34,243 - musicbot - INFO - Handling as single track
2025-09-12 19:51:34,244 - musicbot - INFO - Handling single track: Dancing triangle pumped up kicks Tongo #DancingTriangle
2025-09-12 19:51:34,244 - musicbot - INFO - Player is free, playing immediately: Dancing triangle pumped up kicks Tongo #DancingTriangle
2025-09-12 19:51:34,249 - wavelink.websocket - DEBUG - Node(identifier=_DvqKFvnnW0cyYx8, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 19:51:34,251 - wavelink.websocket - DEBUG - Node(identifier=_DvqKFvnnW0cyYx8, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 19:51:34,252 - wavelink.websocket - DEBUG - Node(identifier=_DvqKFvnnW0cyYx8, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_track_start'
2025-09-12 19:51:34,252 - musicbot - INFO - Track started: Dancing triangle pumped up kicks Tongo #DancingTriangle
2025-09-12 19:51:34,253 - musicbot - INFO - Successfully started playing: Dancing triangle pumped up kicks Tongo #DancingTriangle
2025-09-12 19:51:34,255 - wavelink.websocket - DEBUG - Node(identifier=_DvqKFvnnW0cyYx8, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 19:51:34,946 - wavelink.websocket - DEBUG - Node(identifier=_DvqKFvnnW0cyYx8, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_track_end'
2025-09-12 19:51:34,947 - musicbot - INFO - Track ended: Dancing triangle pumped up kicks Tongo #DancingTriangle - Reason: finished
2025-09-12 19:51:34,947 - wavelink.websocket - DEBUG - Node(identifier=_DvqKFvnnW0cyYx8, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_track_exception'
2025-09-12 19:51:37,758 - discord.ext.commands.bot - ERROR - Ignoring exception in command None
discord.ext.commands.errors.CommandNotFound: Command "debug" is not found
2025-09-12 19:51:45,928 - wavelink.player - DEBUG - Disregarding Inactivity Check Task <Task-70> as it was previously cancelled.
2025-09-12 19:51:48,765 - discord.client - WARNING - PyNaCl is not installed, voice will NOT be supported
2025-09-12 19:51:48,767 - discord.client - INFO - logging in using static token
2025-09-12 19:51:49,673 - musicbot - INFO - Connecting to Lavalink at 192.168.0.8:2333
2025-09-12 19:51:49,682 - musicbot - INFO - Lavalink node connected successfully!
2025-09-12 19:51:49,696 - wavelink.websocket - DEBUG - Node(identifier=Fq1HgUVrEBF2O0gY, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=0) dispatched the event 'on_wavelink_node_ready'
2025-09-12 19:51:49,697 - wavelink.websocket - DEBUG - Node(identifier=Fq1HgUVrEBF2O0gY, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=0) dispatched the event 'on_wavelink_stats_update'
2025-09-12 19:51:49,697 - musicbot - INFO - Wavelink node 'Fq1HgUVrEBF2O0gY' is ready!
2025-09-12 19:51:50,236 - discord.gateway - INFO - Shard ID None has connected to Gateway (Session ID: 5969b5fe5d0b19480f50adbbc17198cf).
2025-09-12 19:51:52,268 - musicbot - INFO - Rat_Artist#4817 has connected to Discord!
2025-09-12 19:51:52,269 - musicbot - INFO - Bot is in 4 guilds
2025-09-12 19:52:03,339 - musicbot - INFO - Play command received: 'https://www.youtube.com/watch?v=WtO3AHMBePY&ab_channel=1Mushy' from user berry_rat
2025-09-12 19:52:03,832 - wavelink.player - DEBUG - Player 376404888579604485 is dispatching VOICE_UPDATE.
2025-09-12 19:52:03,838 - musicbot - INFO - Player status - Playing: False, Paused: False, Queue length: 0
2025-09-12 19:52:03,839 - musicbot - INFO - Searching for: https://www.youtube.com/watch?v=WtO3AHMBePY&ab_channel=1Mushy
2025-09-12 19:52:03,840 - musicbot - INFO - Query is URL, letting Lavalink handle directly
2025-09-12 19:52:03,856 - wavelink.websocket - DEBUG - Node(identifier=Fq1HgUVrEBF2O0gY, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 19:52:03,933 - musicbot - INFO - Search returned 1 results
2025-09-12 19:52:03,934 - musicbot - INFO - Handling as single track
2025-09-12 19:52:03,934 - musicbot - INFO - Handling single track: Dancing triangle pumped up kicks Tongo #DancingTriangle
2025-09-12 19:52:03,934 - musicbot - INFO - Player is free, playing immediately: Dancing triangle pumped up kicks Tongo #DancingTriangle
2025-09-12 19:52:03,942 - wavelink.websocket - DEBUG - Node(identifier=Fq1HgUVrEBF2O0gY, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 19:52:03,944 - wavelink.websocket - DEBUG - Node(identifier=Fq1HgUVrEBF2O0gY, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_track_start'
2025-09-12 19:52:03,944 - wavelink.websocket - DEBUG - Node(identifier=Fq1HgUVrEBF2O0gY, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 19:52:03,945 - wavelink.websocket - DEBUG - Node(identifier=Fq1HgUVrEBF2O0gY, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 19:52:03,945 - musicbot - INFO - Track started: Dancing triangle pumped up kicks Tongo #DancingTriangle
2025-09-12 19:52:03,950 - musicbot - INFO - Successfully started playing: Dancing triangle pumped up kicks Tongo #DancingTriangle
2025-09-12 19:52:04,445 - wavelink.websocket - DEBUG - Node(identifier=Fq1HgUVrEBF2O0gY, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_track_exception'
2025-09-12 19:52:04,446 - musicbot - ERROR - Track exception: Dancing triangle pumped up kicks Tongo #DancingTriangle - Exception: {'message': 'Please sign in', 'severity': 'suspicious', 'cause': 'com.sedmelluq.discord.lavaplayer.tools.FriendlyException: Please sign in', 'causeStackTrace': 'com.sedmelluq.discord.lavaplayer.tools.FriendlyException: Please sign in\n\tat dev.lavalink.youtube.track.YoutubeAudioTrack.process(YoutubeAudioTrack.java:131)\n\tat com.sedmelluq.discord.lavaplayer.track.playback.LocalAudioTrackExecutor.execute(LocalAudioTrackExecutor.java:109)\n\tat com.sedmelluq.discord.lavaplayer.player.DefaultAudioPlayerManager.lambda$executeTrack$2(DefaultAudioPlayerManager.java:339)\n\tat java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)\n\tat java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)\n\tat java.base/java.lang.Thread.run(Thread.java:840)\n'}
2025-09-12 19:52:04,473 - wavelink.websocket - DEBUG - Node(identifier=Fq1HgUVrEBF2O0gY, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_track_end'
2025-09-12 19:52:04,474 - musicbot - INFO - Track ended: Dancing triangle pumped up kicks Tongo #DancingTriangle - Reason: loadFailed
2025-09-12 19:52:11,639 - discord.ext.commands.bot - ERROR - Ignoring exception in command debug
Traceback (most recent call last):
File "C:\Users\Berry\Desktop\python\RatArt\venv\lib\site-packages\discord\ext\commands\core.py", line 266, in wrapped
ret = await coro(*args, **kwargs)
File "C:\Users\Berry\Desktop\python\RatArt\bot.py", line 423, in debug
debug_info.append(f" Status: {'Connected' if node.is_connected else 'Disconnected'}")
AttributeError: 'Node' object has no attribute 'is_connected'
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "C:\Users\Berry\Desktop\python\RatArt\venv\lib\site-packages\discord\ext\commands\bot.py", line 1376, in invoke
await ctx.command.invoke(ctx)
File "C:\Users\Berry\Desktop\python\RatArt\venv\lib\site-packages\discord\ext\commands\core.py", line 1064, in invoke
await injected(*ctx.args, **ctx.kwargs) # type: ignore
File "C:\Users\Berry\Desktop\python\RatArt\venv\lib\site-packages\discord\ext\commands\core.py", line 275, in wrapped
raise CommandInvokeError(exc) from exc
discord.ext.commands.errors.CommandInvokeError: Command raised an exception: AttributeError: 'Node' object has no attribute 'is_connected'
2025-09-12 19:52:49,681 - wavelink.websocket - DEBUG - Node(identifier=Fq1HgUVrEBF2O0gY, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_stats_update'
2025-09-12 19:53:33,185 - musicbot - INFO - Play command received: 'https://www.youtube.com/watch?v=WtO3AHMBePY&ab_channel=1Mushy' from user berry_rat
2025-09-12 19:53:33,195 - musicbot - INFO - Already connected to voice channel
2025-09-12 19:53:33,195 - musicbot - INFO - Player status - Playing: False, Paused: False, Queue length: 0
2025-09-12 19:53:33,195 - musicbot - INFO - Searching for: https://www.youtube.com/watch?v=WtO3AHMBePY&ab_channel=1Mushy
2025-09-12 19:53:33,196 - musicbot - INFO - Query is URL, letting Lavalink handle directly
2025-09-12 19:53:33,280 - musicbot - INFO - Search returned 1 results
2025-09-12 19:53:33,280 - musicbot - INFO - Handling as single track
2025-09-12 19:53:33,281 - musicbot - INFO - Handling single track: Dancing triangle pumped up kicks Tongo #DancingTriangle
2025-09-12 19:53:33,281 - musicbot - INFO - Player is free, playing immediately: Dancing triangle pumped up kicks Tongo #DancingTriangle
2025-09-12 19:53:33,288 - wavelink.websocket - DEBUG - Node(identifier=Fq1HgUVrEBF2O0gY, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 19:53:33,289 - wavelink.websocket - DEBUG - Node(identifier=Fq1HgUVrEBF2O0gY, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_track_start'
2025-09-12 19:53:33,289 - wavelink.websocket - DEBUG - Node(identifier=Fq1HgUVrEBF2O0gY, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 19:53:33,290 - musicbot - INFO - Track started: Dancing triangle pumped up kicks Tongo #DancingTriangle
2025-09-12 19:53:33,295 - musicbot - INFO - Successfully started playing: Dancing triangle pumped up kicks Tongo #DancingTriangle
2025-09-12 19:53:33,296 - wavelink.websocket - DEBUG - Node(identifier=Fq1HgUVrEBF2O0gY, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 19:53:33,296 - wavelink.player - DEBUG - Disregarding Inactivity Check Task <Task-26> as it was previously cancelled.
2025-09-12 19:53:33,866 - wavelink.websocket - DEBUG - Node(identifier=Fq1HgUVrEBF2O0gY, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_track_end'
2025-09-12 19:53:33,866 - musicbot - INFO - Track ended: Dancing triangle pumped up kicks Tongo #DancingTriangle - Reason: finished
2025-09-12 19:53:33,867 - wavelink.websocket - DEBUG - Node(identifier=Fq1HgUVrEBF2O0gY, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_track_exception'
2025-09-12 19:53:33,867 - musicbot - ERROR - Track exception: Dancing triangle pumped up kicks Tongo #DancingTriangle - Exception: {'message': 'Please sign in', 'severity': 'suspicious', 'cause': 'com.sedmelluq.discord.lavaplayer.tools.FriendlyException: Please sign in', 'causeStackTrace': 'com.sedmelluq.discord.lavaplayer.tools.FriendlyException: Please sign in\n\tat dev.lavalink.youtube.track.YoutubeAudioTrack.process(YoutubeAudioTrack.java:131)\n\tat com.sedmelluq.discord.lavaplayer.track.playback.LocalAudioTrackExecutor.execute(LocalAudioTrackExecutor.java:109)\n\tat com.sedmelluq.discord.lavaplayer.player.DefaultAudioPlayerManager.lambda$executeTrack$2(DefaultAudioPlayerManager.java:339)\n\tat java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)\n\tat java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)\n\tat java.base/java.lang.Thread.run(Thread.java:840)\n'}
2025-09-12 19:53:39,957 - wavelink.player - DEBUG - Disregarding Inactivity Check Task <Task-42> as it was previously cancelled.
2025-09-12 19:53:42,260 - discord.client - WARNING - PyNaCl is not installed, voice will NOT be supported
2025-09-12 19:53:42,263 - discord.client - INFO - logging in using static token
2025-09-12 19:53:42,845 - musicbot - INFO - Connecting to Lavalink at 192.168.0.8:2333
2025-09-12 19:53:42,856 - musicbot - INFO - Lavalink node connected successfully!
2025-09-12 19:53:42,873 - wavelink.websocket - DEBUG - Node(identifier=dJmIvdjmm2ix6GSn, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=0) dispatched the event 'on_wavelink_node_ready'
2025-09-12 19:53:42,874 - wavelink.websocket - DEBUG - Node(identifier=dJmIvdjmm2ix6GSn, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=0) dispatched the event 'on_wavelink_stats_update'
2025-09-12 19:53:42,875 - musicbot - INFO - Wavelink node 'dJmIvdjmm2ix6GSn' is ready!
2025-09-12 19:53:43,383 - discord.gateway - INFO - Shard ID None has connected to Gateway (Session ID: cbff63d9156f7823fbce1c8815d9601f).
2025-09-12 19:53:45,411 - musicbot - INFO - Rat_Artist#4817 has connected to Discord!
2025-09-12 19:53:45,412 - musicbot - INFO - Bot is in 4 guilds
2025-09-12 19:53:52,230 - musicbot - INFO - Play command received: 'https://www.youtube.com/watch?v=WtO3AHMBePY&ab_channel=1Mushy' from user berry_rat
2025-09-12 19:53:52,230 - musicbot - INFO - User in voice channel: ð¢LOLEC (ID: 461975763713916928)
2025-09-12 19:53:52,230 - musicbot - INFO - Connecting to voice channel: ð¢LOLEC
2025-09-12 19:53:52,610 - wavelink.player - DEBUG - Player 376404888579604485 is dispatching VOICE_UPDATE.
2025-09-12 19:53:52,611 - musicbot - INFO - Successfully connected to ð¢LOLEC
2025-09-12 19:53:52,611 - musicbot - INFO - Player status - Playing: False, Paused: False, Queue length: 0
2025-09-12 19:53:52,611 - musicbot - INFO - Searching for: https://www.youtube.com/watch?v=WtO3AHMBePY&ab_channel=1Mushy
2025-09-12 19:53:52,613 - musicbot - INFO - Query is URL, letting Lavalink handle directly
2025-09-12 19:53:52,634 - wavelink.websocket - DEBUG - Node(identifier=dJmIvdjmm2ix6GSn, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 19:53:52,693 - musicbot - INFO - Search returned 1 results
2025-09-12 19:53:52,693 - musicbot - INFO - Handling as single track
2025-09-12 19:53:52,694 - musicbot - INFO - Handling single track: Dancing triangle pumped up kicks Tongo #DancingTriangle
2025-09-12 19:53:52,694 - musicbot - INFO - Player is free, playing immediately: Dancing triangle pumped up kicks Tongo #DancingTriangle
2025-09-12 19:53:52,707 - wavelink.websocket - DEBUG - Node(identifier=dJmIvdjmm2ix6GSn, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 19:53:52,708 - wavelink.websocket - DEBUG - Node(identifier=dJmIvdjmm2ix6GSn, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 19:53:52,709 - wavelink.websocket - DEBUG - Node(identifier=dJmIvdjmm2ix6GSn, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_track_start'
2025-09-12 19:53:52,709 - wavelink.websocket - DEBUG - Node(identifier=dJmIvdjmm2ix6GSn, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 19:53:52,710 - musicbot - INFO - Track started: Dancing triangle pumped up kicks Tongo #DancingTriangle
2025-09-12 19:53:52,710 - musicbot - INFO - Player details - Guild: Tha Ukrainan Kings, Channel: ð¢LOLEC
2025-09-12 19:53:52,712 - musicbot - INFO - Successfully started playing: Dancing triangle pumped up kicks Tongo #DancingTriangle
2025-09-12 19:53:53,110 - wavelink.websocket - DEBUG - Node(identifier=dJmIvdjmm2ix6GSn, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_track_exception'
2025-09-12 19:53:53,110 - musicbot - ERROR - Track exception: Dancing triangle pumped up kicks Tongo #DancingTriangle - Exception: {'message': 'Please sign in', 'severity': 'suspicious', 'cause': 'com.sedmelluq.discord.lavaplayer.tools.FriendlyException: Please sign in', 'causeStackTrace': 'com.sedmelluq.discord.lavaplayer.tools.FriendlyException: Please sign in\n\tat dev.lavalink.youtube.track.YoutubeAudioTrack.process(YoutubeAudioTrack.java:131)\n\tat com.sedmelluq.discord.lavaplayer.track.playback.LocalAudioTrackExecutor.execute(LocalAudioTrackExecutor.java:109)\n\tat com.sedmelluq.discord.lavaplayer.player.DefaultAudioPlayerManager.lambda$executeTrack$2(DefaultAudioPlayerManager.java:339)\n\tat java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)\n\tat java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)\n\tat java.base/java.lang.Thread.run(Thread.java:840)\n'}
2025-09-12 19:53:53,119 - wavelink.websocket - DEBUG - Node(identifier=dJmIvdjmm2ix6GSn, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_track_end'
2025-09-12 19:53:53,120 - musicbot - INFO - Track ended: Dancing triangle pumped up kicks Tongo #DancingTriangle - Reason: loadFailed
2025-09-12 19:54:42,854 - wavelink.websocket - DEBUG - Node(identifier=dJmIvdjmm2ix6GSn, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_stats_update'
2025-09-12 19:55:42,849 - wavelink.websocket - DEBUG - Node(identifier=dJmIvdjmm2ix6GSn, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_stats_update'
2025-09-12 19:56:42,845 - wavelink.websocket - DEBUG - Node(identifier=dJmIvdjmm2ix6GSn, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_stats_update'
2025-09-12 19:57:14,510 - wavelink.player - DEBUG - Disregarding Inactivity Check Task <Task-27> as it was previously cancelled.
2025-09-12 19:57:14,515 - wavelink.websocket - DEBUG - Node(identifier=dJmIvdjmm2ix6GSn, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=0) dispatched the event 'on_wavelink_websocket_closed'
2025-09-12 19:57:14,516 - wavelink.websocket - DEBUG - Node(identifier=dJmIvdjmm2ix6GSn, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=0) dispatched the event 'on_wavelink_player_update'
2025-09-12 19:57:14,517 - musicbot - WARNING - Websocket closed - Code: DiscordVoiceCloseType.DISCONNECTED, Reason: Disconnected.
2025-09-12 19:57:16,281 - musicbot - INFO - Play command received: 'https://www.youtube.com/watch?v=WtO3AHMBePY&ab_channel=1Mushy' from user berry_rat
2025-09-12 19:57:16,281 - musicbot - INFO - User in voice channel: ð¢LOLEC (ID: 461975763713916928)
2025-09-12 19:57:16,282 - musicbot - INFO - Connecting to voice channel: ð¢LOLEC
2025-09-12 19:57:16,707 - wavelink.player - DEBUG - Player 376404888579604485 is dispatching VOICE_UPDATE.
2025-09-12 19:57:16,708 - musicbot - INFO - Successfully connected to ð¢LOLEC
2025-09-12 19:57:16,708 - musicbot - INFO - Player status - Playing: False, Paused: False, Queue length: 0
2025-09-12 19:57:16,708 - musicbot - INFO - Searching for: https://www.youtube.com/watch?v=WtO3AHMBePY&ab_channel=1Mushy
2025-09-12 19:57:16,709 - musicbot - INFO - Query is URL, letting Lavalink handle directly
2025-09-12 19:57:16,726 - wavelink.websocket - DEBUG - Node(identifier=dJmIvdjmm2ix6GSn, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 19:57:16,803 - musicbot - INFO - Search returned 1 results
2025-09-12 19:57:16,804 - musicbot - INFO - Handling as single track
2025-09-12 19:57:16,804 - musicbot - INFO - Handling single track: Dancing triangle pumped up kicks Tongo #DancingTriangle
2025-09-12 19:57:16,804 - musicbot - INFO - Player is free, playing immediately: Dancing triangle pumped up kicks Tongo #DancingTriangle
2025-09-12 19:57:16,810 - musicbot - INFO - Successfully started playing: Dancing triangle pumped up kicks Tongo #DancingTriangle
2025-09-12 19:57:16,810 - wavelink.websocket - DEBUG - Node(identifier=dJmIvdjmm2ix6GSn, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 19:57:16,811 - wavelink.websocket - DEBUG - Node(identifier=dJmIvdjmm2ix6GSn, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 19:57:16,811 - wavelink.websocket - DEBUG - Node(identifier=dJmIvdjmm2ix6GSn, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_track_start'
2025-09-12 19:57:16,812 - wavelink.websocket - DEBUG - Node(identifier=dJmIvdjmm2ix6GSn, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 19:57:16,812 - musicbot - INFO - Track started: Dancing triangle pumped up kicks Tongo #DancingTriangle
2025-09-12 19:57:16,812 - musicbot - INFO - Player details - Guild: Tha Ukrainan Kings, Channel: ð¢LOLEC
2025-09-12 19:57:17,287 - wavelink.websocket - DEBUG - Node(identifier=dJmIvdjmm2ix6GSn, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_track_exception'
2025-09-12 19:57:17,288 - musicbot - ERROR - Track exception: Dancing triangle pumped up kicks Tongo #DancingTriangle - Exception: {'message': 'Please sign in', 'severity': 'suspicious', 'cause': 'com.sedmelluq.discord.lavaplayer.tools.FriendlyException: Please sign in', 'causeStackTrace': 'com.sedmelluq.discord.lavaplayer.tools.FriendlyException: Please sign in\n\tat dev.lavalink.youtube.track.YoutubeAudioTrack.process(YoutubeAudioTrack.java:131)\n\tat com.sedmelluq.discord.lavaplayer.track.playback.LocalAudioTrackExecutor.execute(LocalAudioTrackExecutor.java:109)\n\tat com.sedmelluq.discord.lavaplayer.player.DefaultAudioPlayerManager.lambda$executeTrack$2(DefaultAudioPlayerManager.java:339)\n\tat java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)\n\tat java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)\n\tat java.base/java.lang.Thread.run(Thread.java:840)\n'}
2025-09-12 19:57:17,291 - wavelink.websocket - DEBUG - Node(identifier=dJmIvdjmm2ix6GSn, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_track_end'
2025-09-12 19:57:17,292 - musicbot - INFO - Track ended: Dancing triangle pumped up kicks Tongo #DancingTriangle - Reason: loadFailed
2025-09-12 19:57:24,422 - wavelink.player - DEBUG - Disregarding Inactivity Check Task <Task-59> as it was previously cancelled.
2025-09-12 19:57:26,475 - discord.client - WARNING - PyNaCl is not installed, voice will NOT be supported
2025-09-12 19:57:26,478 - discord.client - INFO - logging in using static token
2025-09-12 19:57:27,035 - musicbot - INFO - Connecting to Lavalink at 192.168.0.8:2333
2025-09-12 19:57:27,044 - musicbot - INFO - Lavalink node connected successfully!
2025-09-12 19:57:27,058 - wavelink.websocket - DEBUG - Node(identifier=76QX9iosF3hKVaLq, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=0) dispatched the event 'on_wavelink_node_ready'
2025-09-12 19:57:27,058 - wavelink.websocket - DEBUG - Node(identifier=76QX9iosF3hKVaLq, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=0) dispatched the event 'on_wavelink_stats_update'
2025-09-12 19:57:27,059 - musicbot - INFO - Wavelink node '76QX9iosF3hKVaLq' is ready!
2025-09-12 19:57:27,470 - discord.gateway - INFO - Shard ID None has connected to Gateway (Session ID: 31684a2f78ee35fa42bd1a64a05dbef6).
2025-09-12 19:57:29,497 - musicbot - INFO - Rat_Artist#4817 has connected to Discord!
2025-09-12 19:57:29,497 - musicbot - INFO - Bot is in 4 guilds
2025-09-12 19:57:35,947 - musicbot - INFO - Play command received: 'https://www.youtube.com/watch?v=WtO3AHMBePY&ab_channel=1Mushy' from user berry_rat
2025-09-12 19:57:35,948 - musicbot - INFO - User in voice channel: ð¢LOLEC (ID: 461975763713916928)
2025-09-12 19:57:35,948 - musicbot - INFO - Connecting to voice channel: ð¢LOLEC
2025-09-12 19:57:36,317 - wavelink.player - DEBUG - Player 376404888579604485 is dispatching VOICE_UPDATE.
2025-09-12 19:57:36,318 - musicbot - INFO - Successfully connected to ð¢LOLEC
2025-09-12 19:57:36,318 - musicbot - INFO - Player status - Playing: False, Paused: False, Queue length: 0
2025-09-12 19:57:36,318 - musicbot - INFO - Searching for: https://www.youtube.com/watch?v=WtO3AHMBePY&ab_channel=1Mushy
2025-09-12 19:57:36,320 - musicbot - INFO - YouTube URL detected, using ytsearch for better compatibility
2025-09-12 19:57:36,338 - wavelink.websocket - DEBUG - Node(identifier=76QX9iosF3hKVaLq, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 19:57:36,842 - musicbot - INFO - Search returned 20 results
2025-09-12 19:57:36,843 - musicbot - INFO - Handling as single track
2025-09-12 19:57:36,844 - musicbot - INFO - Handling single track: Focus Music for Work and Studying, Background Music for Better Concentration, Study Music
2025-09-12 19:57:36,844 - musicbot - INFO - Player is free, playing immediately: Focus Music for Work and Studying, Background Music for Better Concentration, Study Music
2025-09-12 19:57:36,851 - wavelink.websocket - DEBUG - Node(identifier=76QX9iosF3hKVaLq, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 19:57:36,853 - wavelink.websocket - DEBUG - Node(identifier=76QX9iosF3hKVaLq, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 19:57:36,854 - wavelink.websocket - DEBUG - Node(identifier=76QX9iosF3hKVaLq, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_track_start'
2025-09-12 19:57:36,855 - wavelink.websocket - DEBUG - Node(identifier=76QX9iosF3hKVaLq, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 19:57:36,856 - musicbot - INFO - Track started: Focus Music for Work and Studying, Background Music for Better Concentration, Study Music
2025-09-12 19:57:36,857 - musicbot - INFO - Player details - Guild: Tha Ukrainan Kings, Channel: ð¢LOLEC
2025-09-12 19:57:36,859 - musicbot - INFO - Successfully started playing: Focus Music for Work and Studying, Background Music for Better Concentration, Study Music
2025-09-12 19:57:38,748 - wavelink.websocket - DEBUG - Node(identifier=76QX9iosF3hKVaLq, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_track_exception'
2025-09-12 19:57:38,749 - musicbot - ERROR - Track exception: Focus Music for Work and Studying, Background Music for Better Concentration, Study Music - Exception: {'message': 'Please sign in', 'severity': 'suspicious', 'cause': 'com.sedmelluq.discord.lavaplayer.tools.FriendlyException: Please sign in', 'causeStackTrace': 'com.sedmelluq.discord.lavaplayer.tools.FriendlyException: Please sign in\n\tat dev.lavalink.youtube.track.YoutubeAudioTrack.process(YoutubeAudioTrack.java:131)\n\tat com.sedmelluq.discord.lavaplayer.track.playback.LocalAudioTrackExecutor.execute(LocalAudioTrackExecutor.java:109)\n\tat com.sedmelluq.discord.lavaplayer.player.DefaultAudioPlayerManager.lambda$executeTrack$2(DefaultAudioPlayerManager.java:339)\n\tat java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)\n\tat java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)\n\tat java.base/java.lang.Thread.run(Thread.java:840)\n'}
2025-09-12 19:57:38,785 - wavelink.websocket - DEBUG - Node(identifier=76QX9iosF3hKVaLq, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_track_end'
2025-09-12 19:57:38,785 - musicbot - INFO - Track ended: Focus Music for Work and Studying, Background Music for Better Concentration, Study Music - Reason: loadFailed
2025-09-12 19:58:27,043 - wavelink.websocket - DEBUG - Node(identifier=76QX9iosF3hKVaLq, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_stats_update'
2025-09-12 19:59:27,040 - wavelink.websocket - DEBUG - Node(identifier=76QX9iosF3hKVaLq, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_stats_update'
2025-09-12 20:00:27,036 - wavelink.websocket - DEBUG - Node(identifier=76QX9iosF3hKVaLq, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_stats_update'
2025-09-12 20:01:27,031 - wavelink.websocket - DEBUG - Node(identifier=76QX9iosF3hKVaLq, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_stats_update'
2025-09-12 20:02:16,239 - wavelink.player - DEBUG - Disregarding Inactivity Check Task <Task-27> as it was previously cancelled.
2025-09-12 20:02:19,071 - discord.client - WARNING - PyNaCl is not installed, voice will NOT be supported
2025-09-12 20:02:19,074 - discord.client - INFO - logging in using static token
2025-09-12 20:02:19,773 - musicbot - INFO - Connecting to Lavalink at 192.168.0.8:2333
2025-09-12 20:02:19,784 - musicbot - INFO - Lavalink node connected successfully!
2025-09-12 20:02:19,787 - wavelink.websocket - DEBUG - Node(identifier=2nsC-JkVTx-fCmQb, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTING, players=0) dispatched the event 'on_wavelink_stats_update'
2025-09-12 20:02:19,804 - wavelink.websocket - DEBUG - Node(identifier=2nsC-JkVTx-fCmQb, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=0) dispatched the event 'on_wavelink_node_ready'
2025-09-12 20:02:19,804 - musicbot - INFO - Wavelink node '2nsC-JkVTx-fCmQb' is ready!
2025-09-12 20:02:20,224 - discord.gateway - INFO - Shard ID None has connected to Gateway (Session ID: 243ec6ec398341f6275f608804118bd0).
2025-09-12 20:02:22,246 - musicbot - INFO - Rat_Artist#4817 has connected to Discord!
2025-09-12 20:02:22,246 - musicbot - INFO - Bot is in 4 guilds
2025-09-12 20:02:26,926 - musicbot - INFO - Play command received: 'https://www.youtube.com/watch?v=WtO3AHMBePY&ab_channel=1Mushy' from user berry_rat
2025-09-12 20:02:26,926 - musicbot - INFO - User in voice channel: ð¢LOLEC (ID: 461975763713916928)
2025-09-12 20:02:26,926 - musicbot - INFO - Connecting to voice channel: ð¢LOLEC
2025-09-12 20:02:27,583 - wavelink.player - DEBUG - Player 376404888579604485 is dispatching VOICE_UPDATE.
2025-09-12 20:02:27,583 - musicbot - INFO - Successfully connected to ð¢LOLEC
2025-09-12 20:02:27,584 - musicbot - INFO - Player status - Playing: False, Paused: False, Queue length: 0
2025-09-12 20:02:27,584 - musicbot - INFO - Searching for: https://www.youtube.com/watch?v=WtO3AHMBePY&ab_channel=1Mushy
2025-09-12 20:02:27,586 - musicbot - INFO - URL detected, letting Lavalink handle directly (lavasrc will process)
2025-09-12 20:02:27,606 - wavelink.websocket - DEBUG - Node(identifier=2nsC-JkVTx-fCmQb, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 20:02:27,762 - musicbot - INFO - Search returned 1 results
2025-09-12 20:02:27,762 - musicbot - INFO - Handling as single track
2025-09-12 20:02:27,763 - musicbot - INFO - Handling single track: Dancing triangle pumped up kicks Tongo #DancingTriangle
2025-09-12 20:02:27,764 - musicbot - INFO - Player is free, playing immediately: Dancing triangle pumped up kicks Tongo #DancingTriangle
2025-09-12 20:02:27,769 - wavelink.websocket - DEBUG - Node(identifier=2nsC-JkVTx-fCmQb, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 20:02:27,771 - wavelink.websocket - DEBUG - Node(identifier=2nsC-JkVTx-fCmQb, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_track_start'
2025-09-12 20:02:27,771 - musicbot - INFO - Track started: Dancing triangle pumped up kicks Tongo #DancingTriangle
2025-09-12 20:02:27,772 - musicbot - INFO - Player details - Guild: Tha Ukrainan Kings, Channel: ð¢LOLEC
2025-09-12 20:02:27,774 - musicbot - INFO - Successfully started playing: Dancing triangle pumped up kicks Tongo #DancingTriangle
2025-09-12 20:02:27,775 - wavelink.websocket - DEBUG - Node(identifier=2nsC-JkVTx-fCmQb, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 20:02:27,777 - wavelink.websocket - DEBUG - Node(identifier=2nsC-JkVTx-fCmQb, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 20:02:28,483 - wavelink.websocket - DEBUG - Node(identifier=2nsC-JkVTx-fCmQb, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_track_exception'
2025-09-12 20:02:28,484 - musicbot - ERROR - Track exception: Dancing triangle pumped up kicks Tongo #DancingTriangle - Exception: {'message': 'Please sign in', 'severity': 'suspicious', 'cause': 'com.sedmelluq.discord.lavaplayer.tools.FriendlyException: Please sign in', 'causeStackTrace': 'com.sedmelluq.discord.lavaplayer.tools.FriendlyException: Please sign in\n\tat dev.lavalink.youtube.track.YoutubeAudioTrack.process(YoutubeAudioTrack.java:131)\n\tat com.sedmelluq.discord.lavaplayer.track.playback.LocalAudioTrackExecutor.execute(LocalAudioTrackExecutor.java:109)\n\tat com.sedmelluq.discord.lavaplayer.player.DefaultAudioPlayerManager.lambda$executeTrack$2(DefaultAudioPlayerManager.java:339)\n\tat java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)\n\tat java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)\n\tat java.base/java.lang.Thread.run(Thread.java:840)\n'}
2025-09-12 20:02:28,490 - wavelink.websocket - DEBUG - Node(identifier=2nsC-JkVTx-fCmQb, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_track_end'
2025-09-12 20:02:28,494 - musicbot - INFO - Track ended: Dancing triangle pumped up kicks Tongo #DancingTriangle - Reason: loadFailed
2025-09-12 20:03:19,783 - wavelink.websocket - DEBUG - Node(identifier=2nsC-JkVTx-fCmQb, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_stats_update'
2025-09-12 20:04:19,778 - wavelink.websocket - DEBUG - Node(identifier=2nsC-JkVTx-fCmQb, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_stats_update'
2025-09-12 20:07:28,506 - wavelink.player - DEBUG - Dispatched "on_wavelink_inactive_player" for Player <376404888579604485>.
2025-09-12 20:18:04,502 - discord.client - WARNING - PyNaCl is not installed, voice will NOT be supported
2025-09-12 20:18:04,505 - discord.client - INFO - logging in using static token
2025-09-12 20:18:05,057 - musicbot - INFO - Connecting to Lavalink at 192.168.0.8:2333
2025-09-12 20:18:05,088 - musicbot - INFO - Lavalink node connected successfully!
2025-09-12 20:18:05,290 - wavelink.websocket - DEBUG - Node(identifier=MSssSLl_SUeL6rOP, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=0) dispatched the event 'on_wavelink_node_ready'
2025-09-12 20:18:05,290 - musicbot - INFO - Wavelink node 'MSssSLl_SUeL6rOP' is ready!
2025-09-12 20:18:05,358 - wavelink.websocket - DEBUG - Node(identifier=MSssSLl_SUeL6rOP, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=0) dispatched the event 'on_wavelink_stats_update'
2025-09-12 20:18:05,509 - discord.gateway - INFO - Shard ID None has connected to Gateway (Session ID: 12ebfaebb12c52281e0fb2c0d6c0521d).
2025-09-12 20:18:07,534 - musicbot - INFO - Rat_Artist#4817 has connected to Discord!
2025-09-12 20:18:07,535 - musicbot - INFO - Bot is in 4 guilds
2025-09-12 20:18:12,279 - musicbot - INFO - Play command received: 'https://www.youtube.com/watch?v=WtO3AHMBePY&ab_channel=1Mushy' from user berry_rat
2025-09-12 20:18:12,280 - musicbot - INFO - User in voice channel: ð¢LOLEC (ID: 461975763713916928)
2025-09-12 20:18:12,280 - musicbot - INFO - Connecting to voice channel: ð¢LOLEC
2025-09-12 20:18:13,220 - wavelink.player - DEBUG - Player 376404888579604485 is dispatching VOICE_UPDATE.
2025-09-12 20:18:13,220 - wavelink.websocket - DEBUG - Node(identifier=MSssSLl_SUeL6rOP, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 20:18:13,221 - musicbot - INFO - Successfully connected to ð¢LOLEC
2025-09-12 20:18:13,221 - musicbot - INFO - Player status - Playing: False, Paused: False, Queue length: 0
2025-09-12 20:18:13,221 - musicbot - INFO - Searching for: https://www.youtube.com/watch?v=WtO3AHMBePY&ab_channel=1Mushy
2025-09-12 20:18:13,223 - musicbot - INFO - URL detected, letting Lavalink handle directly (lavasrc will process)
2025-09-12 20:18:13,976 - musicbot - INFO - Search returned 1 results
2025-09-12 20:18:13,976 - musicbot - INFO - Handling as single track
2025-09-12 20:18:13,976 - musicbot - INFO - Handling single track: Dancing triangle pumped up kicks Tongo #DancingTriangle
2025-09-12 20:18:13,977 - musicbot - INFO - Player is free, playing immediately: Dancing triangle pumped up kicks Tongo #DancingTriangle
2025-09-12 20:18:13,985 - wavelink.websocket - DEBUG - Node(identifier=MSssSLl_SUeL6rOP, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 20:18:13,988 - wavelink.websocket - DEBUG - Node(identifier=MSssSLl_SUeL6rOP, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 20:18:13,991 - wavelink.websocket - DEBUG - Node(identifier=MSssSLl_SUeL6rOP, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_track_start'
2025-09-12 20:18:13,991 - musicbot - INFO - Track started: Dancing triangle pumped up kicks Tongo #DancingTriangle
2025-09-12 20:18:13,991 - musicbot - INFO - Player details - Guild: Tha Ukrainan Kings, Channel: ð¢LOLEC
2025-09-12 20:18:13,993 - wavelink.websocket - DEBUG - Node(identifier=MSssSLl_SUeL6rOP, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 20:18:13,995 - musicbot - INFO - Successfully started playing: Dancing triangle pumped up kicks Tongo #DancingTriangle
2025-09-12 20:18:18,989 - wavelink.websocket - DEBUG - Node(identifier=MSssSLl_SUeL6rOP, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 20:18:23,988 - wavelink.websocket - DEBUG - Node(identifier=MSssSLl_SUeL6rOP, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 20:18:28,988 - wavelink.websocket - DEBUG - Node(identifier=MSssSLl_SUeL6rOP, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 20:18:33,988 - wavelink.websocket - DEBUG - Node(identifier=MSssSLl_SUeL6rOP, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 20:18:38,987 - wavelink.websocket - DEBUG - Node(identifier=MSssSLl_SUeL6rOP, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 20:18:43,987 - wavelink.websocket - DEBUG - Node(identifier=MSssSLl_SUeL6rOP, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 20:18:48,986 - wavelink.websocket - DEBUG - Node(identifier=MSssSLl_SUeL6rOP, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 20:18:53,986 - wavelink.websocket - DEBUG - Node(identifier=MSssSLl_SUeL6rOP, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 20:18:58,986 - wavelink.websocket - DEBUG - Node(identifier=MSssSLl_SUeL6rOP, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 20:19:03,985 - wavelink.websocket - DEBUG - Node(identifier=MSssSLl_SUeL6rOP, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 20:19:05,117 - wavelink.websocket - DEBUG - Node(identifier=MSssSLl_SUeL6rOP, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_stats_update'
2025-09-12 20:19:08,985 - wavelink.websocket - DEBUG - Node(identifier=MSssSLl_SUeL6rOP, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 20:19:13,985 - wavelink.websocket - DEBUG - Node(identifier=MSssSLl_SUeL6rOP, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 20:19:18,985 - wavelink.websocket - DEBUG - Node(identifier=MSssSLl_SUeL6rOP, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 20:19:23,984 - wavelink.websocket - DEBUG - Node(identifier=MSssSLl_SUeL6rOP, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 20:19:28,985 - wavelink.websocket - DEBUG - Node(identifier=MSssSLl_SUeL6rOP, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 20:19:33,983 - wavelink.websocket - DEBUG - Node(identifier=MSssSLl_SUeL6rOP, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 20:19:38,983 - wavelink.websocket - DEBUG - Node(identifier=MSssSLl_SUeL6rOP, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 20:19:43,982 - wavelink.websocket - DEBUG - Node(identifier=MSssSLl_SUeL6rOP, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 20:19:48,982 - wavelink.websocket - DEBUG - Node(identifier=MSssSLl_SUeL6rOP, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 20:19:53,981 - wavelink.websocket - DEBUG - Node(identifier=MSssSLl_SUeL6rOP, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 20:19:58,981 - wavelink.websocket - DEBUG - Node(identifier=MSssSLl_SUeL6rOP, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 20:20:03,378 - wavelink.websocket - DEBUG - Node(identifier=MSssSLl_SUeL6rOP, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=0) dispatched the event 'on_wavelink_track_end'
2025-09-12 20:20:03,379 - musicbot - INFO - Track ended: Dancing triangle pumped up kicks Tongo #DancingTriangle - Reason: stopped
2025-09-12 20:20:03,382 - wavelink.websocket - DEBUG - Node(identifier=MSssSLl_SUeL6rOP, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=0) dispatched the event 'on_wavelink_websocket_closed'
2025-09-12 20:20:03,383 - wavelink.websocket - DEBUG - Node(identifier=MSssSLl_SUeL6rOP, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=0) dispatched the event 'on_wavelink_player_update'
2025-09-12 20:20:03,383 - musicbot - WARNING - Websocket closed - Code: DiscordVoiceCloseType.CLOSE_NORMAL, Reason:
2025-09-12 20:20:05,112 - wavelink.websocket - DEBUG - Node(identifier=MSssSLl_SUeL6rOP, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=0) dispatched the event 'on_wavelink_stats_update'
2025-09-12 20:21:05,109 - wavelink.websocket - DEBUG - Node(identifier=MSssSLl_SUeL6rOP, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=0) dispatched the event 'on_wavelink_stats_update'
2025-09-12 20:22:05,105 - wavelink.websocket - DEBUG - Node(identifier=MSssSLl_SUeL6rOP, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=0) dispatched the event 'on_wavelink_stats_update'
2025-09-12 20:22:38,418 - musicbot - INFO - Play command received: 'https://www.youtube.com/watch?v=bjwgt1kRqEU&ab_channel=armandom' from user berry_rat
2025-09-12 20:22:38,422 - musicbot - INFO - User in voice channel: ð¢LOLEC (ID: 461975763713916928)
2025-09-12 20:22:38,423 - musicbot - INFO - Connecting to voice channel: ð¢LOLEC
2025-09-12 20:22:38,855 - wavelink.player - DEBUG - Player 376404888579604485 is dispatching VOICE_UPDATE.
2025-09-12 20:22:38,856 - musicbot - INFO - Successfully connected to ð¢LOLEC
2025-09-12 20:22:38,856 - musicbot - INFO - Player status - Playing: False, Paused: False, Queue length: 0
2025-09-12 20:22:38,857 - musicbot - INFO - Searching for: https://www.youtube.com/watch?v=bjwgt1kRqEU&ab_channel=armandom
2025-09-12 20:22:38,857 - musicbot - INFO - URL detected, letting Lavalink handle directly (lavasrc will process)
2025-09-12 20:22:38,878 - wavelink.websocket - DEBUG - Node(identifier=MSssSLl_SUeL6rOP, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 20:22:39,039 - musicbot - INFO - Search returned 1 results
2025-09-12 20:22:39,039 - musicbot - INFO - Handling as single track
2025-09-12 20:22:39,039 - musicbot - INFO - Handling single track: Tongo - Pumped Up Kicks | Foster The People
2025-09-12 20:22:39,040 - musicbot - INFO - Player is free, playing immediately: Tongo - Pumped Up Kicks | Foster The People
2025-09-12 20:22:39,045 - wavelink.websocket - DEBUG - Node(identifier=MSssSLl_SUeL6rOP, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 20:22:39,046 - wavelink.websocket - DEBUG - Node(identifier=MSssSLl_SUeL6rOP, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_track_start'
2025-09-12 20:22:39,046 - wavelink.websocket - DEBUG - Node(identifier=MSssSLl_SUeL6rOP, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 20:22:39,047 - musicbot - INFO - Track started: Tongo - Pumped Up Kicks | Foster The People
2025-09-12 20:22:39,047 - musicbot - INFO - Player details - Guild: Tha Ukrainan Kings, Channel: ð¢LOLEC
2025-09-12 20:22:39,048 - wavelink.websocket - DEBUG - Node(identifier=MSssSLl_SUeL6rOP, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 20:22:39,048 - musicbot - INFO - Successfully started playing: Tongo - Pumped Up Kicks | Foster The People
2025-09-12 20:22:44,045 - wavelink.websocket - DEBUG - Node(identifier=MSssSLl_SUeL6rOP, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 20:22:49,044 - wavelink.websocket - DEBUG - Node(identifier=MSssSLl_SUeL6rOP, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 20:22:54,044 - wavelink.websocket - DEBUG - Node(identifier=MSssSLl_SUeL6rOP, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 20:22:59,044 - wavelink.websocket - DEBUG - Node(identifier=MSssSLl_SUeL6rOP, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 20:23:04,043 - wavelink.websocket - DEBUG - Node(identifier=MSssSLl_SUeL6rOP, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 20:23:05,099 - wavelink.websocket - DEBUG - Node(identifier=MSssSLl_SUeL6rOP, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_stats_update'
2025-09-12 20:23:09,042 - wavelink.websocket - DEBUG - Node(identifier=MSssSLl_SUeL6rOP, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 20:23:14,042 - wavelink.websocket - DEBUG - Node(identifier=MSssSLl_SUeL6rOP, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 20:23:19,042 - wavelink.websocket - DEBUG - Node(identifier=MSssSLl_SUeL6rOP, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 20:23:24,041 - wavelink.websocket - DEBUG - Node(identifier=MSssSLl_SUeL6rOP, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 20:23:29,042 - wavelink.websocket - DEBUG - Node(identifier=MSssSLl_SUeL6rOP, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 20:23:34,041 - wavelink.websocket - DEBUG - Node(identifier=MSssSLl_SUeL6rOP, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 20:23:39,041 - wavelink.websocket - DEBUG - Node(identifier=MSssSLl_SUeL6rOP, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 20:23:44,040 - wavelink.websocket - DEBUG - Node(identifier=MSssSLl_SUeL6rOP, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 20:23:49,040 - wavelink.websocket - DEBUG - Node(identifier=MSssSLl_SUeL6rOP, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 20:23:54,039 - wavelink.websocket - DEBUG - Node(identifier=MSssSLl_SUeL6rOP, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 20:23:59,039 - wavelink.websocket - DEBUG - Node(identifier=MSssSLl_SUeL6rOP, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 20:24:04,039 - wavelink.websocket - DEBUG - Node(identifier=MSssSLl_SUeL6rOP, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 20:24:05,095 - wavelink.websocket - DEBUG - Node(identifier=MSssSLl_SUeL6rOP, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_stats_update'
2025-09-12 20:24:09,039 - wavelink.websocket - DEBUG - Node(identifier=MSssSLl_SUeL6rOP, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 20:24:14,038 - wavelink.websocket - DEBUG - Node(identifier=MSssSLl_SUeL6rOP, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 20:24:19,038 - wavelink.websocket - DEBUG - Node(identifier=MSssSLl_SUeL6rOP, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 20:24:24,038 - wavelink.websocket - DEBUG - Node(identifier=MSssSLl_SUeL6rOP, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 20:24:29,037 - wavelink.websocket - DEBUG - Node(identifier=MSssSLl_SUeL6rOP, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 20:24:34,036 - wavelink.websocket - DEBUG - Node(identifier=MSssSLl_SUeL6rOP, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 20:24:39,037 - wavelink.websocket - DEBUG - Node(identifier=MSssSLl_SUeL6rOP, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 20:24:44,036 - wavelink.websocket - DEBUG - Node(identifier=MSssSLl_SUeL6rOP, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 20:24:49,036 - wavelink.websocket - DEBUG - Node(identifier=MSssSLl_SUeL6rOP, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 20:24:54,035 - wavelink.websocket - DEBUG - Node(identifier=MSssSLl_SUeL6rOP, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 20:24:59,035 - wavelink.websocket - DEBUG - Node(identifier=MSssSLl_SUeL6rOP, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 20:25:04,035 - wavelink.websocket - DEBUG - Node(identifier=MSssSLl_SUeL6rOP, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 20:25:05,090 - wavelink.websocket - DEBUG - Node(identifier=MSssSLl_SUeL6rOP, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_stats_update'
2025-09-12 20:25:09,035 - wavelink.websocket - DEBUG - Node(identifier=MSssSLl_SUeL6rOP, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 20:25:14,034 - wavelink.websocket - DEBUG - Node(identifier=MSssSLl_SUeL6rOP, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 20:25:19,034 - wavelink.websocket - DEBUG - Node(identifier=MSssSLl_SUeL6rOP, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 20:25:24,033 - wavelink.websocket - DEBUG - Node(identifier=MSssSLl_SUeL6rOP, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 20:25:29,033 - wavelink.websocket - DEBUG - Node(identifier=MSssSLl_SUeL6rOP, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 20:25:34,032 - wavelink.websocket - DEBUG - Node(identifier=MSssSLl_SUeL6rOP, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 20:25:39,032 - wavelink.websocket - DEBUG - Node(identifier=MSssSLl_SUeL6rOP, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 20:25:44,032 - wavelink.websocket - DEBUG - Node(identifier=MSssSLl_SUeL6rOP, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 20:25:49,031 - wavelink.websocket - DEBUG - Node(identifier=MSssSLl_SUeL6rOP, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 20:25:53,147 - discord.ext.commands.bot - ERROR - Ignoring exception in command None
discord.ext.commands.errors.CommandNotFound: Command "reset" is not found
2025-09-12 20:25:54,031 - wavelink.websocket - DEBUG - Node(identifier=MSssSLl_SUeL6rOP, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 20:26:01,171 - discord.client - WARNING - PyNaCl is not installed, voice will NOT be supported
2025-09-12 20:26:01,174 - discord.client - INFO - logging in using static token
2025-09-12 20:26:01,724 - musicbot - INFO - Connecting to Lavalink at 192.168.0.8:2333
2025-09-12 20:26:01,737 - musicbot - INFO - Lavalink node connected successfully!
2025-09-12 20:26:01,756 - wavelink.websocket - DEBUG - Node(identifier=AcdTjLXTH87zwJZq, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=0) dispatched the event 'on_wavelink_node_ready'
2025-09-12 20:26:01,757 - wavelink.websocket - DEBUG - Node(identifier=AcdTjLXTH87zwJZq, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=0) dispatched the event 'on_wavelink_stats_update'
2025-09-12 20:26:01,759 - musicbot - INFO - Wavelink node 'AcdTjLXTH87zwJZq' is ready!
2025-09-12 20:26:02,224 - discord.gateway - INFO - Shard ID None has connected to Gateway (Session ID: 94d10cadfcd88a5a125a162e048ab112).
2025-09-12 20:26:04,239 - musicbot - INFO - Rat_Artist#4817 has connected to Discord!
2025-09-12 20:26:04,240 - musicbot - INFO - Bot is in 4 guilds
2025-09-12 20:26:13,514 - musicbot - INFO - Reset command called by berry_rat
2025-09-12 20:26:22,989 - musicbot - INFO - Play command received: 'https://www.youtube.com/watch?v=bjwgt1kRqEU&ab_channel=armandom' from user berry_rat
2025-09-12 20:26:22,990 - musicbot - INFO - User in voice channel: ð¢LOLEC (ID: 461975763713916928)
2025-09-12 20:26:22,990 - musicbot - INFO - Connecting to voice channel: ð¢LOLEC
2025-09-12 20:26:23,657 - wavelink.player - DEBUG - Player 376404888579604485 is dispatching VOICE_UPDATE.
2025-09-12 20:26:23,658 - musicbot - INFO - Successfully connected to ð¢LOLEC
2025-09-12 20:26:23,658 - musicbot - INFO - Player status - Playing: False, Paused: False, Queue length: 0
2025-09-12 20:26:23,658 - musicbot - INFO - Searching for: https://www.youtube.com/watch?v=bjwgt1kRqEU&ab_channel=armandom
2025-09-12 20:26:23,660 - musicbot - INFO - URL detected, letting Lavalink handle directly (lavasrc will process)
2025-09-12 20:26:23,677 - wavelink.websocket - DEBUG - Node(identifier=AcdTjLXTH87zwJZq, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 20:26:23,749 - musicbot - INFO - Search returned 1 results
2025-09-12 20:26:23,749 - musicbot - INFO - Handling as single track
2025-09-12 20:26:23,749 - musicbot - INFO - Handling single track: Tongo - Pumped Up Kicks | Foster The People
2025-09-12 20:26:23,750 - musicbot - INFO - Player is free, playing immediately: Tongo - Pumped Up Kicks | Foster The People
2025-09-12 20:26:23,757 - wavelink.websocket - DEBUG - Node(identifier=AcdTjLXTH87zwJZq, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 20:26:23,758 - wavelink.websocket - DEBUG - Node(identifier=AcdTjLXTH87zwJZq, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 20:26:23,758 - wavelink.websocket - DEBUG - Node(identifier=AcdTjLXTH87zwJZq, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_track_start'
2025-09-12 20:26:23,759 - musicbot - INFO - Track started: Tongo - Pumped Up Kicks | Foster The People
2025-09-12 20:26:23,759 - musicbot - INFO - Player details - Guild: Tha Ukrainan Kings, Channel: ð¢LOLEC
2025-09-12 20:26:23,759 - wavelink.websocket - DEBUG - Node(identifier=AcdTjLXTH87zwJZq, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 20:26:23,760 - musicbot - INFO - Successfully started playing: Tongo - Pumped Up Kicks | Foster The People
2025-09-12 20:26:28,756 - wavelink.websocket - DEBUG - Node(identifier=AcdTjLXTH87zwJZq, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 20:26:33,756 - wavelink.websocket - DEBUG - Node(identifier=AcdTjLXTH87zwJZq, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 20:26:38,756 - wavelink.websocket - DEBUG - Node(identifier=AcdTjLXTH87zwJZq, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 20:26:43,755 - wavelink.websocket - DEBUG - Node(identifier=AcdTjLXTH87zwJZq, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 20:26:48,755 - wavelink.websocket - DEBUG - Node(identifier=AcdTjLXTH87zwJZq, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 20:26:53,754 - wavelink.websocket - DEBUG - Node(identifier=AcdTjLXTH87zwJZq, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 20:26:58,754 - wavelink.websocket - DEBUG - Node(identifier=AcdTjLXTH87zwJZq, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 20:27:01,734 - wavelink.websocket - DEBUG - Node(identifier=AcdTjLXTH87zwJZq, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_stats_update'
2025-09-12 20:27:03,754 - wavelink.websocket - DEBUG - Node(identifier=AcdTjLXTH87zwJZq, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 20:27:08,753 - wavelink.websocket - DEBUG - Node(identifier=AcdTjLXTH87zwJZq, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 20:27:13,753 - wavelink.websocket - DEBUG - Node(identifier=AcdTjLXTH87zwJZq, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 20:27:18,753 - wavelink.websocket - DEBUG - Node(identifier=AcdTjLXTH87zwJZq, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 20:27:23,752 - wavelink.websocket - DEBUG - Node(identifier=AcdTjLXTH87zwJZq, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 20:27:28,752 - wavelink.websocket - DEBUG - Node(identifier=AcdTjLXTH87zwJZq, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 20:27:33,751 - wavelink.websocket - DEBUG - Node(identifier=AcdTjLXTH87zwJZq, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 20:27:38,751 - wavelink.websocket - DEBUG - Node(identifier=AcdTjLXTH87zwJZq, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 20:27:43,751 - wavelink.websocket - DEBUG - Node(identifier=AcdTjLXTH87zwJZq, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 20:27:48,751 - wavelink.websocket - DEBUG - Node(identifier=AcdTjLXTH87zwJZq, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 20:27:53,750 - wavelink.websocket - DEBUG - Node(identifier=AcdTjLXTH87zwJZq, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 20:27:58,750 - wavelink.websocket - DEBUG - Node(identifier=AcdTjLXTH87zwJZq, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 20:28:01,730 - wavelink.websocket - DEBUG - Node(identifier=AcdTjLXTH87zwJZq, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_stats_update'
2025-09-12 20:28:03,749 - wavelink.websocket - DEBUG - Node(identifier=AcdTjLXTH87zwJZq, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 20:28:08,749 - wavelink.websocket - DEBUG - Node(identifier=AcdTjLXTH87zwJZq, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 20:28:13,749 - wavelink.websocket - DEBUG - Node(identifier=AcdTjLXTH87zwJZq, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 20:28:18,748 - wavelink.websocket - DEBUG - Node(identifier=AcdTjLXTH87zwJZq, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 20:28:23,748 - wavelink.websocket - DEBUG - Node(identifier=AcdTjLXTH87zwJZq, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 20:28:28,748 - wavelink.websocket - DEBUG - Node(identifier=AcdTjLXTH87zwJZq, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 20:28:33,747 - wavelink.websocket - DEBUG - Node(identifier=AcdTjLXTH87zwJZq, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 20:28:38,746 - wavelink.websocket - DEBUG - Node(identifier=AcdTjLXTH87zwJZq, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 20:28:43,747 - wavelink.websocket - DEBUG - Node(identifier=AcdTjLXTH87zwJZq, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 20:28:48,747 - wavelink.websocket - DEBUG - Node(identifier=AcdTjLXTH87zwJZq, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 20:28:53,746 - wavelink.websocket - DEBUG - Node(identifier=AcdTjLXTH87zwJZq, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 20:28:58,746 - wavelink.websocket - DEBUG - Node(identifier=AcdTjLXTH87zwJZq, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 20:29:01,726 - wavelink.websocket - DEBUG - Node(identifier=AcdTjLXTH87zwJZq, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_stats_update'
2025-09-12 20:29:03,745 - wavelink.websocket - DEBUG - Node(identifier=AcdTjLXTH87zwJZq, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 20:29:08,744 - wavelink.websocket - DEBUG - Node(identifier=AcdTjLXTH87zwJZq, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 20:29:13,744 - wavelink.websocket - DEBUG - Node(identifier=AcdTjLXTH87zwJZq, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 20:29:18,745 - wavelink.websocket - DEBUG - Node(identifier=AcdTjLXTH87zwJZq, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 20:29:23,744 - wavelink.websocket - DEBUG - Node(identifier=AcdTjLXTH87zwJZq, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 20:29:28,743 - wavelink.websocket - DEBUG - Node(identifier=AcdTjLXTH87zwJZq, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 20:29:33,744 - wavelink.websocket - DEBUG - Node(identifier=AcdTjLXTH87zwJZq, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 20:29:38,743 - wavelink.websocket - DEBUG - Node(identifier=AcdTjLXTH87zwJZq, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 20:29:43,742 - wavelink.websocket - DEBUG - Node(identifier=AcdTjLXTH87zwJZq, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 20:29:48,742 - wavelink.websocket - DEBUG - Node(identifier=AcdTjLXTH87zwJZq, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 20:29:53,742 - wavelink.websocket - DEBUG - Node(identifier=AcdTjLXTH87zwJZq, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 20:29:57,482 - discord.ext.commands.bot - ERROR - Ignoring exception in command None
discord.ext.commands.errors.CommandNotFound: Command "skip\" is not found
2025-09-12 20:29:58,741 - wavelink.websocket - DEBUG - Node(identifier=AcdTjLXTH87zwJZq, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 20:30:01,078 - wavelink.websocket - DEBUG - Node(identifier=AcdTjLXTH87zwJZq, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_track_end'
2025-09-12 20:30:01,079 - musicbot - INFO - Track ended: Tongo - Pumped Up Kicks | Foster The People - Reason: stopped
2025-09-12 20:30:01,721 - wavelink.websocket - DEBUG - Node(identifier=AcdTjLXTH87zwJZq, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_stats_update'
2025-09-12 20:30:08,718 - musicbot - INFO - Play command received: 'https://open.spotify.com/track/2x4JC9TxW2LACuuxbsncfG?si=f398fc3975ff4a9f' from user berry_rat
2025-09-12 20:30:08,718 - musicbot - INFO - User in voice channel: ð¢LOLEC (ID: 461975763713916928)
2025-09-12 20:30:08,718 - musicbot - INFO - Already connected to voice channel
2025-09-12 20:30:08,718 - musicbot - INFO - Player status - Playing: False, Paused: False, Queue length: 0
2025-09-12 20:30:08,719 - musicbot - INFO - Searching for: https://open.spotify.com/track/2x4JC9TxW2LACuuxbsncfG?si=f398fc3975ff4a9f
2025-09-12 20:30:08,719 - musicbot - INFO - URL detected, letting Lavalink handle directly (lavasrc will process)
2025-09-12 20:30:09,230 - musicbot - INFO - Search returned 1 results
2025-09-12 20:30:09,231 - musicbot - INFO - Handling as single track
2025-09-12 20:30:09,231 - musicbot - INFO - Handling single track: Mockingbird
2025-09-12 20:30:09,231 - musicbot - INFO - Player is free, playing immediately: Mockingbird
2025-09-12 20:30:09,238 - musicbot - INFO - Successfully started playing: Mockingbird
2025-09-12 20:30:09,240 - wavelink.websocket - DEBUG - Node(identifier=AcdTjLXTH87zwJZq, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 20:30:09,241 - wavelink.websocket - DEBUG - Node(identifier=AcdTjLXTH87zwJZq, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 20:30:09,241 - wavelink.websocket - DEBUG - Node(identifier=AcdTjLXTH87zwJZq, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_track_start'
2025-09-12 20:30:09,242 - wavelink.websocket - DEBUG - Node(identifier=AcdTjLXTH87zwJZq, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 20:30:09,242 - musicbot - INFO - Track started: Mockingbird
2025-09-12 20:30:09,242 - musicbot - INFO - Player details - Guild: Tha Ukrainan Kings, Channel: ð¢LOLEC
2025-09-12 20:30:09,243 - wavelink.player - DEBUG - Disregarding Inactivity Check Task <Task-79> as it was previously cancelled.
2025-09-12 20:30:14,237 - wavelink.websocket - DEBUG - Node(identifier=AcdTjLXTH87zwJZq, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 20:30:19,237 - wavelink.websocket - DEBUG - Node(identifier=AcdTjLXTH87zwJZq, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 20:30:24,236 - wavelink.websocket - DEBUG - Node(identifier=AcdTjLXTH87zwJZq, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 20:30:29,236 - wavelink.websocket - DEBUG - Node(identifier=AcdTjLXTH87zwJZq, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 20:30:34,235 - wavelink.websocket - DEBUG - Node(identifier=AcdTjLXTH87zwJZq, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 20:30:39,041 - musicbot - INFO - Play command received: 'https://open.spotify.com/playlist/0UTzfaoVvqDpqYcdMeiSDV?si=f9bfa453cc3e4c95' from user berry_rat
2025-09-12 20:30:39,042 - musicbot - INFO - User in voice channel: ð¢LOLEC (ID: 461975763713916928)
2025-09-12 20:30:39,042 - musicbot - INFO - Already connected to voice channel
2025-09-12 20:30:39,042 - musicbot - INFO - Player status - Playing: True, Paused: False, Queue length: 0
2025-09-12 20:30:39,043 - musicbot - INFO - Searching for: https://open.spotify.com/playlist/0UTzfaoVvqDpqYcdMeiSDV?si=f9bfa453cc3e4c95
2025-09-12 20:30:39,043 - musicbot - INFO - URL detected, letting Lavalink handle directly (lavasrc will process)
2025-09-12 20:30:39,236 - wavelink.websocket - DEBUG - Node(identifier=AcdTjLXTH87zwJZq, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 20:30:40,601 - musicbot - INFO - Search returned 127 results
2025-09-12 20:30:40,601 - musicbot - INFO - Handling as playlist
2025-09-12 20:30:44,234 - wavelink.websocket - DEBUG - Node(identifier=AcdTjLXTH87zwJZq, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 20:30:49,234 - wavelink.websocket - DEBUG - Node(identifier=AcdTjLXTH87zwJZq, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 20:30:54,234 - wavelink.websocket - DEBUG - Node(identifier=AcdTjLXTH87zwJZq, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 20:30:54,763 - discord.ext.commands.bot - ERROR - Ignoring exception in command None
discord.ext.commands.errors.CommandNotFound: Command "shuffle" is not found
2025-09-12 20:30:59,234 - wavelink.websocket - DEBUG - Node(identifier=AcdTjLXTH87zwJZq, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 20:31:01,718 - wavelink.websocket - DEBUG - Node(identifier=AcdTjLXTH87zwJZq, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_stats_update'
2025-09-12 20:31:04,234 - wavelink.websocket - DEBUG - Node(identifier=AcdTjLXTH87zwJZq, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 20:31:09,233 - wavelink.websocket - DEBUG - Node(identifier=AcdTjLXTH87zwJZq, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 20:31:14,232 - wavelink.websocket - DEBUG - Node(identifier=AcdTjLXTH87zwJZq, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 20:31:19,232 - wavelink.websocket - DEBUG - Node(identifier=AcdTjLXTH87zwJZq, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 20:31:24,232 - wavelink.websocket - DEBUG - Node(identifier=AcdTjLXTH87zwJZq, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 20:31:29,232 - wavelink.websocket - DEBUG - Node(identifier=AcdTjLXTH87zwJZq, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 20:31:34,231 - wavelink.websocket - DEBUG - Node(identifier=AcdTjLXTH87zwJZq, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 20:31:39,231 - wavelink.websocket - DEBUG - Node(identifier=AcdTjLXTH87zwJZq, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 20:31:44,231 - wavelink.websocket - DEBUG - Node(identifier=AcdTjLXTH87zwJZq, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 20:31:49,232 - wavelink.websocket - DEBUG - Node(identifier=AcdTjLXTH87zwJZq, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 20:31:54,233 - wavelink.websocket - DEBUG - Node(identifier=AcdTjLXTH87zwJZq, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 20:31:59,230 - wavelink.websocket - DEBUG - Node(identifier=AcdTjLXTH87zwJZq, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 20:32:01,713 - wavelink.websocket - DEBUG - Node(identifier=AcdTjLXTH87zwJZq, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_stats_update'
2025-09-12 20:32:04,230 - wavelink.websocket - DEBUG - Node(identifier=AcdTjLXTH87zwJZq, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 20:32:09,228 - wavelink.websocket - DEBUG - Node(identifier=AcdTjLXTH87zwJZq, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 20:32:14,229 - wavelink.websocket - DEBUG - Node(identifier=AcdTjLXTH87zwJZq, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 20:32:19,230 - wavelink.websocket - DEBUG - Node(identifier=AcdTjLXTH87zwJZq, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 20:32:20,749 - discord.ext.commands.bot - ERROR - Ignoring exception in command None
discord.ext.commands.errors.CommandNotFound: Command "help" is not found
2025-09-12 20:32:24,228 - wavelink.websocket - DEBUG - Node(identifier=AcdTjLXTH87zwJZq, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 20:32:29,227 - wavelink.websocket - DEBUG - Node(identifier=AcdTjLXTH87zwJZq, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 20:32:34,227 - wavelink.websocket - DEBUG - Node(identifier=AcdTjLXTH87zwJZq, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 20:32:39,227 - wavelink.websocket - DEBUG - Node(identifier=AcdTjLXTH87zwJZq, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 20:32:44,226 - wavelink.websocket - DEBUG - Node(identifier=AcdTjLXTH87zwJZq, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 20:32:45,296 - wavelink.websocket - DEBUG - Node(identifier=AcdTjLXTH87zwJZq, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_track_end'
2025-09-12 20:32:45,297 - musicbot - INFO - Track ended: Mockingbird - Reason: finished
2025-09-12 20:33:01,709 - wavelink.websocket - DEBUG - Node(identifier=AcdTjLXTH87zwJZq, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_stats_update'
2025-09-12 20:34:01,705 - wavelink.websocket - DEBUG - Node(identifier=AcdTjLXTH87zwJZq, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_stats_update'
2025-09-12 20:35:01,701 - wavelink.websocket - DEBUG - Node(identifier=AcdTjLXTH87zwJZq, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_stats_update'
2025-09-12 20:36:01,696 - wavelink.websocket - DEBUG - Node(identifier=AcdTjLXTH87zwJZq, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_stats_update'
2025-09-12 20:37:01,692 - wavelink.websocket - DEBUG - Node(identifier=AcdTjLXTH87zwJZq, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_stats_update'
2025-09-12 20:37:45,311 - wavelink.player - DEBUG - Dispatched "on_wavelink_inactive_player" for Player <376404888579604485>.
2025-09-12 20:37:51,996 - musicbot - INFO - Reset command called by berry_rat
2025-09-12 20:37:52,013 - musicbot - INFO - Successfully disconnected and cleared state
2025-09-12 20:37:52,167 - wavelink.websocket - DEBUG - Node(identifier=AcdTjLXTH87zwJZq, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=0) dispatched the event 'on_wavelink_websocket_closed'
2025-09-12 20:37:52,167 - wavelink.websocket - DEBUG - Node(identifier=AcdTjLXTH87zwJZq, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=0) dispatched the event 'on_wavelink_player_update'
2025-09-12 20:37:52,168 - musicbot - WARNING - Websocket closed - Code: DiscordVoiceCloseType.SESSION_INVALID, Reason: Session is no longer valid.
2025-09-12 20:38:01,550 - discord.client - WARNING - PyNaCl is not installed, voice will NOT be supported
2025-09-12 20:38:01,554 - discord.client - INFO - logging in using static token
2025-09-12 20:38:02,082 - musicbot - INFO - Connecting to Lavalink at 192.168.0.8:2333
2025-09-12 20:38:02,091 - musicbot - INFO - Lavalink node connected successfully!
2025-09-12 20:38:02,092 - wavelink.websocket - DEBUG - Node(identifier=bCXIWCiVbh6Uw9Fh, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTING, players=0) dispatched the event 'on_wavelink_stats_update'
2025-09-12 20:38:02,105 - wavelink.websocket - DEBUG - Node(identifier=bCXIWCiVbh6Uw9Fh, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=0) dispatched the event 'on_wavelink_node_ready'
2025-09-12 20:38:02,106 - musicbot - INFO - Wavelink node 'bCXIWCiVbh6Uw9Fh' is ready!
2025-09-12 20:38:02,541 - discord.gateway - INFO - Shard ID None has connected to Gateway (Session ID: 27c2264a4844c0cc2a4ad3e112914c92).
2025-09-12 20:38:04,556 - musicbot - INFO - Rat_Artist#4817 has connected to Discord!
2025-09-12 20:38:04,556 - musicbot - INFO - Bot is in 4 guilds
2025-09-12 20:38:14,307 - musicbot - INFO - Play command received: 'https://open.spotify.com/playlist/0UTzfaoVvqDpqYcdMeiSDV?si=f9bfa453cc3e4c95' from user berry_rat
2025-09-12 20:38:14,307 - musicbot - INFO - User in voice channel: ð¢LOLEC (ID: 461975763713916928)
2025-09-12 20:38:14,308 - musicbot - INFO - Connecting to voice channel: ð¢LOLEC
2025-09-12 20:38:14,699 - wavelink.player - DEBUG - Player 376404888579604485 is dispatching VOICE_UPDATE.
2025-09-12 20:38:14,699 - musicbot - INFO - Successfully connected to ð¢LOLEC
2025-09-12 20:38:14,699 - musicbot - INFO - Player status - Playing: False, Paused: False, Queue length: 0
2025-09-12 20:38:14,700 - musicbot - INFO - Searching for: https://open.spotify.com/playlist/0UTzfaoVvqDpqYcdMeiSDV?si=f9bfa453cc3e4c95
2025-09-12 20:38:14,702 - musicbot - INFO - URL detected, letting Lavalink handle directly (lavasrc will process)
2025-09-12 20:38:14,729 - wavelink.websocket - DEBUG - Node(identifier=bCXIWCiVbh6Uw9Fh, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 20:38:16,226 - musicbot - INFO - Search returned 127 results
2025-09-12 20:38:16,226 - musicbot - INFO - Handling as playlist
2025-09-12 20:39:02,089 - wavelink.websocket - DEBUG - Node(identifier=bCXIWCiVbh6Uw9Fh, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_stats_update'
2025-09-12 20:39:47,357 - musicbot - INFO - Reset command called by berry_rat
2025-09-12 20:39:47,373 - musicbot - INFO - Successfully disconnected and cleared state
2025-09-12 20:39:47,375 - wavelink.websocket - DEBUG - Node(identifier=bCXIWCiVbh6Uw9Fh, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=0) dispatched the event 'on_wavelink_websocket_closed'
2025-09-12 20:39:47,375 - wavelink.websocket - DEBUG - Node(identifier=bCXIWCiVbh6Uw9Fh, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=0) dispatched the event 'on_wavelink_player_update'
2025-09-12 20:39:47,376 - musicbot - WARNING - Websocket closed - Code: DiscordVoiceCloseType.CLOSE_NORMAL, Reason:
2025-09-12 20:39:54,392 - discord.client - WARNING - PyNaCl is not installed, voice will NOT be supported
2025-09-12 20:39:54,395 - discord.client - INFO - logging in using static token
2025-09-12 20:39:54,957 - musicbot - INFO - Connecting to Lavalink at 192.168.0.8:2333
2025-09-12 20:39:54,965 - musicbot - INFO - Lavalink node connected successfully!
2025-09-12 20:39:54,977 - wavelink.websocket - DEBUG - Node(identifier=ZPFC_7k3UE-_e_tn, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=0) dispatched the event 'on_wavelink_node_ready'
2025-09-12 20:39:54,978 - wavelink.websocket - DEBUG - Node(identifier=ZPFC_7k3UE-_e_tn, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=0) dispatched the event 'on_wavelink_stats_update'
2025-09-12 20:39:54,978 - musicbot - INFO - Wavelink node 'ZPFC_7k3UE-_e_tn' is ready!
2025-09-12 20:39:55,377 - discord.gateway - INFO - Shard ID None has connected to Gateway (Session ID: 0f69bf8f4bcba0557e0829c08476063a).
2025-09-12 20:39:57,404 - musicbot - INFO - Rat_Artist#4817 has connected to Discord!
2025-09-12 20:39:57,404 - musicbot - INFO - Bot is in 4 guilds
2025-09-12 20:39:59,387 - musicbot - INFO - Play command received: 'https://open.spotify.com/playlist/0UTzfaoVvqDpqYcdMeiSDV?si=f9bfa453cc3e4c95' from user berry_rat
2025-09-12 20:39:59,387 - musicbot - INFO - User in voice channel: ð¢LOLEC (ID: 461975763713916928)
2025-09-12 20:39:59,387 - musicbot - INFO - Connecting to voice channel: ð¢LOLEC
2025-09-12 20:39:59,784 - wavelink.player - DEBUG - Player 376404888579604485 is dispatching VOICE_UPDATE.
2025-09-12 20:39:59,785 - musicbot - INFO - Successfully connected to ð¢LOLEC
2025-09-12 20:39:59,785 - musicbot - INFO - Player status - Playing: False, Paused: False, Queue length: 0
2025-09-12 20:39:59,786 - musicbot - INFO - Searching for: https://open.spotify.com/playlist/0UTzfaoVvqDpqYcdMeiSDV?si=f9bfa453cc3e4c95
2025-09-12 20:39:59,788 - musicbot - INFO - URL detected, letting Lavalink handle directly (lavasrc will process)
2025-09-12 20:39:59,805 - wavelink.websocket - DEBUG - Node(identifier=ZPFC_7k3UE-_e_tn, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 20:40:01,342 - musicbot - INFO - Search returned 127 results
2025-09-12 20:40:01,343 - musicbot - INFO - Handling as playlist
2025-09-12 20:40:01,343 - musicbot - INFO - Found playlist: Now we penta it with 127 tracks
2025-09-12 20:40:01,349 - wavelink.websocket - DEBUG - Node(identifier=ZPFC_7k3UE-_e_tn, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 20:40:01,350 - wavelink.websocket - DEBUG - Node(identifier=ZPFC_7k3UE-_e_tn, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 20:40:01,351 - wavelink.websocket - DEBUG - Node(identifier=ZPFC_7k3UE-_e_tn, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_track_start'
2025-09-12 20:40:01,351 - wavelink.websocket - DEBUG - Node(identifier=ZPFC_7k3UE-_e_tn, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 20:40:01,351 - musicbot - INFO - Track started: Trip to Valhalla
2025-09-12 20:40:01,352 - musicbot - INFO - Player details - Guild: Tha Ukrainan Kings, Channel: ð¢LOLEC
2025-09-12 20:40:01,354 - musicbot - INFO - Started playing first track: Trip to Valhalla
2025-09-12 20:40:01,356 - musicbot - INFO - Reached track limit of 100, stopping playlist load
2025-09-12 20:40:06,349 - wavelink.websocket - DEBUG - Node(identifier=ZPFC_7k3UE-_e_tn, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 20:40:11,350 - wavelink.websocket - DEBUG - Node(identifier=ZPFC_7k3UE-_e_tn, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 20:40:16,349 - wavelink.websocket - DEBUG - Node(identifier=ZPFC_7k3UE-_e_tn, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 20:40:21,349 - wavelink.websocket - DEBUG - Node(identifier=ZPFC_7k3UE-_e_tn, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 20:40:26,349 - wavelink.websocket - DEBUG - Node(identifier=ZPFC_7k3UE-_e_tn, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 20:40:31,348 - wavelink.websocket - DEBUG - Node(identifier=ZPFC_7k3UE-_e_tn, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 20:40:36,348 - wavelink.websocket - DEBUG - Node(identifier=ZPFC_7k3UE-_e_tn, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 20:40:41,348 - wavelink.websocket - DEBUG - Node(identifier=ZPFC_7k3UE-_e_tn, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 20:40:46,347 - wavelink.websocket - DEBUG - Node(identifier=ZPFC_7k3UE-_e_tn, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 20:40:51,347 - wavelink.websocket - DEBUG - Node(identifier=ZPFC_7k3UE-_e_tn, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 20:40:54,964 - wavelink.websocket - DEBUG - Node(identifier=ZPFC_7k3UE-_e_tn, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_stats_update'
2025-09-12 20:40:56,346 - wavelink.websocket - DEBUG - Node(identifier=ZPFC_7k3UE-_e_tn, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 20:41:01,346 - wavelink.websocket - DEBUG - Node(identifier=ZPFC_7k3UE-_e_tn, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 20:41:03,578 - musicbot - INFO - Shuffling queue with 99 tracks for guild Tha Ukrainan Kings
2025-09-12 20:41:04,050 - musicbot - INFO - Successfully shuffled 99 tracks
2025-09-12 20:41:06,345 - wavelink.websocket - DEBUG - Node(identifier=ZPFC_7k3UE-_e_tn, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 20:41:11,345 - wavelink.websocket - DEBUG - Node(identifier=ZPFC_7k3UE-_e_tn, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 20:41:16,344 - wavelink.websocket - DEBUG - Node(identifier=ZPFC_7k3UE-_e_tn, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 20:41:21,345 - wavelink.websocket - DEBUG - Node(identifier=ZPFC_7k3UE-_e_tn, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 20:41:26,344 - wavelink.websocket - DEBUG - Node(identifier=ZPFC_7k3UE-_e_tn, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 20:41:28,881 - wavelink.websocket - DEBUG - Node(identifier=ZPFC_7k3UE-_e_tn, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_track_end'
2025-09-12 20:41:28,881 - musicbot - INFO - Track ended: Trip to Valhalla - Reason: stopped
2025-09-12 20:41:28,882 - musicbot - INFO - Track ended with reason 'stopped', not auto-advancing
2025-09-12 20:41:54,960 - wavelink.websocket - DEBUG - Node(identifier=ZPFC_7k3UE-_e_tn, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_stats_update'
2025-09-12 20:42:54,956 - wavelink.websocket - DEBUG - Node(identifier=ZPFC_7k3UE-_e_tn, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_stats_update'
2025-09-12 20:43:13,375 - musicbot - INFO - Reset command called by berry_rat
2025-09-12 20:43:13,386 - wavelink.player - DEBUG - Disregarding Inactivity Check Task <Task-90> as it was previously cancelled.
2025-09-12 20:43:13,389 - musicbot - INFO - Successfully disconnected and cleared state
2025-09-12 20:43:13,390 - wavelink.websocket - DEBUG - Node(identifier=ZPFC_7k3UE-_e_tn, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=0) dispatched the event 'on_wavelink_websocket_closed'
2025-09-12 20:43:13,391 - wavelink.websocket - DEBUG - Node(identifier=ZPFC_7k3UE-_e_tn, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=0) dispatched the event 'on_wavelink_player_update'
2025-09-12 20:43:13,391 - musicbot - WARNING - Websocket closed - Code: DiscordVoiceCloseType.CLOSE_NORMAL, Reason:
2025-09-12 20:43:21,113 - discord.client - WARNING - PyNaCl is not installed, voice will NOT be supported
2025-09-12 20:43:21,118 - discord.client - INFO - logging in using static token
2025-09-12 20:43:21,754 - musicbot - INFO - Connecting to Lavalink at 192.168.0.8:2333
2025-09-12 20:43:21,765 - musicbot - INFO - Lavalink node connected successfully!
2025-09-12 20:43:21,777 - wavelink.websocket - DEBUG - Node(identifier=N2UcJ3Ldv2oe8cT1, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=0) dispatched the event 'on_wavelink_node_ready'
2025-09-12 20:43:21,778 - wavelink.websocket - DEBUG - Node(identifier=N2UcJ3Ldv2oe8cT1, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=0) dispatched the event 'on_wavelink_stats_update'
2025-09-12 20:43:21,778 - musicbot - INFO - Wavelink node 'N2UcJ3Ldv2oe8cT1' is ready!
2025-09-12 20:43:22,969 - discord.gateway - INFO - Shard ID None has connected to Gateway (Session ID: c21a0601935a3f38047a611722a84645).
2025-09-12 20:43:24,984 - musicbot - INFO - Rat_Artist#4817 has connected to Discord!
2025-09-12 20:43:24,984 - musicbot - INFO - Bot is in 4 guilds
2025-09-12 20:43:27,056 - musicbot - INFO - Play command received: 'https://open.spotify.com/playlist/0UTzfaoVvqDpqYcdMeiSDV?si=f9bfa453cc3e4c95' from user berry_rat
2025-09-12 20:43:27,057 - musicbot - INFO - User in voice channel: ð¢LOLEC (ID: 461975763713916928)
2025-09-12 20:43:27,057 - musicbot - INFO - Connecting to voice channel: ð¢LOLEC
2025-09-12 20:43:27,419 - wavelink.player - DEBUG - Player 376404888579604485 is dispatching VOICE_UPDATE.
2025-09-12 20:43:27,420 - musicbot - INFO - Successfully connected to ð¢LOLEC
2025-09-12 20:43:27,420 - musicbot - INFO - Player status - Playing: False, Paused: False, Queue length: 0
2025-09-12 20:43:27,420 - musicbot - INFO - Searching for: https://open.spotify.com/playlist/0UTzfaoVvqDpqYcdMeiSDV?si=f9bfa453cc3e4c95
2025-09-12 20:43:27,422 - musicbot - INFO - URL detected, letting Lavalink handle directly (lavasrc will process)
2025-09-12 20:43:27,442 - wavelink.websocket - DEBUG - Node(identifier=N2UcJ3Ldv2oe8cT1, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 20:43:28,974 - musicbot - INFO - Search returned 127 results
2025-09-12 20:43:28,975 - musicbot - INFO - Handling as playlist
2025-09-12 20:43:28,975 - musicbot - INFO - Found playlist: Now we penta it with 127 tracks
2025-09-12 20:43:28,980 - wavelink.websocket - DEBUG - Node(identifier=N2UcJ3Ldv2oe8cT1, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 20:43:28,981 - wavelink.websocket - DEBUG - Node(identifier=N2UcJ3Ldv2oe8cT1, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 20:43:28,982 - wavelink.websocket - DEBUG - Node(identifier=N2UcJ3Ldv2oe8cT1, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_track_start'
2025-09-12 20:43:28,982 - wavelink.websocket - DEBUG - Node(identifier=N2UcJ3Ldv2oe8cT1, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 20:43:28,983 - musicbot - INFO - Track started: Trip to Valhalla
2025-09-12 20:43:28,983 - musicbot - INFO - Player details - Guild: Tha Ukrainan Kings, Channel: ð¢LOLEC
2025-09-12 20:43:28,984 - musicbot - INFO - Started playing first track: Trip to Valhalla
2025-09-12 20:43:28,986 - musicbot - INFO - Reached track limit of 100, stopping playlist load
2025-09-12 20:43:33,982 - wavelink.websocket - DEBUG - Node(identifier=N2UcJ3Ldv2oe8cT1, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 20:43:38,981 - wavelink.websocket - DEBUG - Node(identifier=N2UcJ3Ldv2oe8cT1, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 20:43:43,981 - wavelink.websocket - DEBUG - Node(identifier=N2UcJ3Ldv2oe8cT1, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 20:43:45,034 - musicbot - INFO - Skip command - Current track: Trip to Valhalla, Queue length: 99
2025-09-12 20:43:45,043 - wavelink.websocket - DEBUG - Node(identifier=N2UcJ3Ldv2oe8cT1, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 20:43:45,044 - wavelink.websocket - DEBUG - Node(identifier=N2UcJ3Ldv2oe8cT1, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_track_end'
2025-09-12 20:43:45,044 - wavelink.websocket - DEBUG - Node(identifier=N2UcJ3Ldv2oe8cT1, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_track_start'
2025-09-12 20:43:45,045 - musicbot - INFO - Track ended: Trip to Valhalla - Reason: replaced
2025-09-12 20:43:45,045 - musicbot - INFO - Track ended with reason 'replaced', not auto-advancing
2025-09-12 20:43:45,046 - musicbot - INFO - Track started: Hot Girl Bummer
2025-09-12 20:43:45,046 - musicbot - INFO - Player details - Guild: Tha Ukrainan Kings, Channel: ð¢LOLEC
2025-09-12 20:43:45,048 - wavelink.websocket - DEBUG - Node(identifier=N2UcJ3Ldv2oe8cT1, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 20:43:45,050 - wavelink.websocket - DEBUG - Node(identifier=N2UcJ3Ldv2oe8cT1, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 20:43:45,051 - wavelink.player - DEBUG - Disregarding Inactivity Check Task <Task-37> as it was previously cancelled.
2025-09-12 20:43:45,052 - musicbot - INFO - Manually skipped to: Hot Girl Bummer
2025-09-12 20:43:50,045 - wavelink.websocket - DEBUG - Node(identifier=N2UcJ3Ldv2oe8cT1, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 20:43:55,044 - wavelink.websocket - DEBUG - Node(identifier=N2UcJ3Ldv2oe8cT1, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 20:43:57,782 - musicbot - INFO - Shuffling queue with 98 tracks for guild Tha Ukrainan Kings
2025-09-12 20:43:58,033 - musicbot - INFO - Successfully shuffled 98 tracks
2025-09-12 20:44:00,044 - wavelink.websocket - DEBUG - Node(identifier=N2UcJ3Ldv2oe8cT1, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 20:44:03,781 - musicbot - INFO - Skip command - Current track: Hot Girl Bummer, Queue length: 98
2025-09-12 20:44:03,790 - wavelink.websocket - DEBUG - Node(identifier=N2UcJ3Ldv2oe8cT1, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 20:44:03,791 - wavelink.websocket - DEBUG - Node(identifier=N2UcJ3Ldv2oe8cT1, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_track_end'
2025-09-12 20:44:03,792 - wavelink.websocket - DEBUG - Node(identifier=N2UcJ3Ldv2oe8cT1, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_track_start'
2025-09-12 20:44:03,792 - wavelink.websocket - DEBUG - Node(identifier=N2UcJ3Ldv2oe8cT1, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 20:44:03,792 - musicbot - INFO - Track ended: Hot Girl Bummer - Reason: replaced
2025-09-12 20:44:03,793 - musicbot - INFO - Track ended with reason 'replaced', not auto-advancing
2025-09-12 20:44:03,793 - musicbot - INFO - Track started: Desire (Sub Focus & Dimension)
2025-09-12 20:44:03,793 - musicbot - INFO - Player details - Guild: Tha Ukrainan Kings, Channel: ð¢LOLEC
2025-09-12 20:44:03,793 - wavelink.websocket - DEBUG - Node(identifier=N2UcJ3Ldv2oe8cT1, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 20:44:03,794 - wavelink.player - DEBUG - Disregarding Inactivity Check Task <Task-55> as it was previously cancelled.
2025-09-12 20:44:03,794 - musicbot - INFO - Manually skipped to: Desire (Sub Focus & Dimension)
2025-09-12 20:44:08,790 - wavelink.websocket - DEBUG - Node(identifier=N2UcJ3Ldv2oe8cT1, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 20:44:13,791 - wavelink.websocket - DEBUG - Node(identifier=N2UcJ3Ldv2oe8cT1, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 20:44:18,790 - wavelink.websocket - DEBUG - Node(identifier=N2UcJ3Ldv2oe8cT1, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 20:44:21,761 - wavelink.websocket - DEBUG - Node(identifier=N2UcJ3Ldv2oe8cT1, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_stats_update'
2025-09-12 20:44:23,790 - wavelink.websocket - DEBUG - Node(identifier=N2UcJ3Ldv2oe8cT1, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 20:44:28,788 - wavelink.websocket - DEBUG - Node(identifier=N2UcJ3Ldv2oe8cT1, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 20:44:33,789 - wavelink.websocket - DEBUG - Node(identifier=N2UcJ3Ldv2oe8cT1, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 20:44:38,788 - wavelink.websocket - DEBUG - Node(identifier=N2UcJ3Ldv2oe8cT1, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 20:44:43,787 - wavelink.websocket - DEBUG - Node(identifier=N2UcJ3Ldv2oe8cT1, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 20:44:48,787 - wavelink.websocket - DEBUG - Node(identifier=N2UcJ3Ldv2oe8cT1, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 20:44:53,786 - wavelink.websocket - DEBUG - Node(identifier=N2UcJ3Ldv2oe8cT1, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 20:44:58,786 - wavelink.websocket - DEBUG - Node(identifier=N2UcJ3Ldv2oe8cT1, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 20:45:03,785 - wavelink.websocket - DEBUG - Node(identifier=N2UcJ3Ldv2oe8cT1, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 20:45:08,785 - wavelink.websocket - DEBUG - Node(identifier=N2UcJ3Ldv2oe8cT1, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 20:45:13,785 - wavelink.websocket - DEBUG - Node(identifier=N2UcJ3Ldv2oe8cT1, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 20:45:18,785 - wavelink.websocket - DEBUG - Node(identifier=N2UcJ3Ldv2oe8cT1, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 20:45:21,758 - wavelink.websocket - DEBUG - Node(identifier=N2UcJ3Ldv2oe8cT1, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_stats_update'
2025-09-12 20:45:23,784 - wavelink.websocket - DEBUG - Node(identifier=N2UcJ3Ldv2oe8cT1, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 20:45:28,784 - wavelink.websocket - DEBUG - Node(identifier=N2UcJ3Ldv2oe8cT1, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 20:45:33,783 - wavelink.websocket - DEBUG - Node(identifier=N2UcJ3Ldv2oe8cT1, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 20:45:38,783 - wavelink.websocket - DEBUG - Node(identifier=N2UcJ3Ldv2oe8cT1, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 20:45:43,783 - wavelink.websocket - DEBUG - Node(identifier=N2UcJ3Ldv2oe8cT1, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 20:45:48,783 - wavelink.websocket - DEBUG - Node(identifier=N2UcJ3Ldv2oe8cT1, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 20:45:53,782 - wavelink.websocket - DEBUG - Node(identifier=N2UcJ3Ldv2oe8cT1, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 20:45:58,781 - wavelink.websocket - DEBUG - Node(identifier=N2UcJ3Ldv2oe8cT1, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 20:46:03,781 - wavelink.websocket - DEBUG - Node(identifier=N2UcJ3Ldv2oe8cT1, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 20:46:08,781 - wavelink.websocket - DEBUG - Node(identifier=N2UcJ3Ldv2oe8cT1, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 20:46:13,781 - wavelink.websocket - DEBUG - Node(identifier=N2UcJ3Ldv2oe8cT1, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 20:46:14,268 - wavelink.websocket - DEBUG - Node(identifier=N2UcJ3Ldv2oe8cT1, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=0) dispatched the event 'on_wavelink_track_end'
2025-09-12 20:46:14,269 - wavelink.websocket - DEBUG - Node(identifier=N2UcJ3Ldv2oe8cT1, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=0) dispatched the event 'on_wavelink_websocket_closed'
2025-09-12 20:46:14,270 - wavelink.websocket - DEBUG - Node(identifier=N2UcJ3Ldv2oe8cT1, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=0) dispatched the event 'on_wavelink_player_update'
2025-09-12 20:46:14,271 - musicbot - INFO - Track ended: Desire (Sub Focus & Dimension) - Reason: stopped
2025-09-12 20:46:14,271 - musicbot - INFO - Track ended with reason 'stopped', not auto-advancing
2025-09-12 20:46:14,272 - musicbot - WARNING - Websocket closed - Code: DiscordVoiceCloseType.CLOSE_NORMAL, Reason:
2025-09-12 20:46:21,754 - wavelink.websocket - DEBUG - Node(identifier=N2UcJ3Ldv2oe8cT1, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=0) dispatched the event 'on_wavelink_stats_update'
2025-09-12 20:46:36,714 - musicbot - INFO - Reset command called by berry_rat
2025-09-12 20:46:42,433 - discord.client - WARNING - PyNaCl is not installed, voice will NOT be supported
2025-09-12 20:46:42,437 - discord.client - INFO - logging in using static token
2025-09-12 20:46:43,086 - musicbot - INFO - Connecting to Lavalink at 192.168.0.8:2333
2025-09-12 20:46:43,095 - musicbot - INFO - Lavalink node connected successfully!
2025-09-12 20:46:43,096 - wavelink.websocket - DEBUG - Node(identifier=F73QJyrbe-86VKAY, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTING, players=0) dispatched the event 'on_wavelink_stats_update'
2025-09-12 20:46:43,108 - wavelink.websocket - DEBUG - Node(identifier=F73QJyrbe-86VKAY, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=0) dispatched the event 'on_wavelink_node_ready'
2025-09-12 20:46:43,108 - musicbot - INFO - Wavelink node 'F73QJyrbe-86VKAY' is ready!
2025-09-12 20:46:43,702 - discord.gateway - INFO - Shard ID None has connected to Gateway (Session ID: f46fa9cec8050ee1f044197609a398db).
2025-09-12 20:46:45,734 - musicbot - INFO - Rat_Artist#4817 has connected to Discord!
2025-09-12 20:46:45,734 - musicbot - INFO - Bot is in 4 guilds
2025-09-12 20:46:49,359 - musicbot - INFO - Play command received: 'https://open.spotify.com/playlist/0UTzfaoVvqDpqYcdMeiSDV?si=f9bfa453cc3e4c95' from user berry_rat
2025-09-12 20:46:49,359 - musicbot - INFO - User in voice channel: ð¢LOLEC (ID: 461975763713916928)
2025-09-12 20:46:49,359 - musicbot - INFO - Connecting to voice channel: ð¢LOLEC
2025-09-12 20:46:49,733 - wavelink.player - DEBUG - Player 376404888579604485 is dispatching VOICE_UPDATE.
2025-09-12 20:46:49,734 - musicbot - INFO - Successfully connected to ð¢LOLEC
2025-09-12 20:46:49,735 - musicbot - INFO - Player status - Playing: False, Paused: False, Queue length: 0
2025-09-12 20:46:49,735 - musicbot - INFO - Searching for: https://open.spotify.com/playlist/0UTzfaoVvqDpqYcdMeiSDV?si=f9bfa453cc3e4c95
2025-09-12 20:46:49,737 - musicbot - INFO - URL detected, letting Lavalink handle directly (lavasrc will process)
2025-09-12 20:46:49,755 - wavelink.websocket - DEBUG - Node(identifier=F73QJyrbe-86VKAY, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 20:46:51,149 - musicbot - INFO - Search returned 127 results
2025-09-12 20:46:51,149 - musicbot - INFO - Handling as playlist
2025-09-12 20:46:51,149 - musicbot - INFO - Found playlist: Now we penta it with 127 tracks
2025-09-12 20:46:51,156 - wavelink.websocket - DEBUG - Node(identifier=F73QJyrbe-86VKAY, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 20:46:51,158 - musicbot - INFO - Started playing first track: Trip to Valhalla
2025-09-12 20:46:51,158 - wavelink.websocket - DEBUG - Node(identifier=F73QJyrbe-86VKAY, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_track_start'
2025-09-12 20:46:51,159 - wavelink.websocket - DEBUG - Node(identifier=F73QJyrbe-86VKAY, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 20:46:51,159 - wavelink.websocket - DEBUG - Node(identifier=F73QJyrbe-86VKAY, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 20:46:51,159 - musicbot - INFO - Track started: Trip to Valhalla
2025-09-12 20:46:51,159 - musicbot - INFO - Player details - Guild: Tha Ukrainan Kings, Channel: ð¢LOLEC
2025-09-12 20:46:51,161 - musicbot - INFO - Reached track limit of 100, stopping playlist load
2025-09-12 20:46:56,156 - wavelink.websocket - DEBUG - Node(identifier=F73QJyrbe-86VKAY, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 20:47:01,156 - wavelink.websocket - DEBUG - Node(identifier=F73QJyrbe-86VKAY, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 20:47:06,155 - wavelink.websocket - DEBUG - Node(identifier=F73QJyrbe-86VKAY, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 20:47:11,155 - wavelink.websocket - DEBUG - Node(identifier=F73QJyrbe-86VKAY, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 20:47:16,155 - wavelink.websocket - DEBUG - Node(identifier=F73QJyrbe-86VKAY, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 20:47:21,155 - wavelink.websocket - DEBUG - Node(identifier=F73QJyrbe-86VKAY, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 20:47:26,154 - wavelink.websocket - DEBUG - Node(identifier=F73QJyrbe-86VKAY, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 20:47:31,154 - wavelink.websocket - DEBUG - Node(identifier=F73QJyrbe-86VKAY, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 20:47:32,584 - musicbot - INFO - Playnext command received: 'never gonna give you up' from user berry_rat
2025-09-12 20:47:33,649 - musicbot - INFO - Added Never Gonna Give You Up to front of queue
2025-09-12 20:47:36,154 - wavelink.websocket - DEBUG - Node(identifier=F73QJyrbe-86VKAY, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 20:47:41,153 - wavelink.websocket - DEBUG - Node(identifier=F73QJyrbe-86VKAY, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 20:47:43,092 - wavelink.websocket - DEBUG - Node(identifier=F73QJyrbe-86VKAY, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_stats_update'
2025-09-12 20:47:46,153 - wavelink.websocket - DEBUG - Node(identifier=F73QJyrbe-86VKAY, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 20:47:51,152 - wavelink.websocket - DEBUG - Node(identifier=F73QJyrbe-86VKAY, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 20:47:51,385 - musicbot - INFO - Shuffling queue with 100 tracks for guild Tha Ukrainan Kings
2025-09-12 20:47:51,746 - musicbot - INFO - Successfully shuffled 100 tracks
2025-09-12 20:47:56,153 - wavelink.websocket - DEBUG - Node(identifier=F73QJyrbe-86VKAY, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 20:48:00,619 - musicbot - INFO - Playnext command received: 'tongo' from user berry_rat
2025-09-12 20:48:01,152 - wavelink.websocket - DEBUG - Node(identifier=F73QJyrbe-86VKAY, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 20:48:02,888 - musicbot - INFO - Added Chop Suey Cumbia to front of queue
2025-09-12 20:48:06,151 - wavelink.websocket - DEBUG - Node(identifier=F73QJyrbe-86VKAY, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 20:48:10,118 - musicbot - INFO - Cleared 101 tracks from queue for guild Tha Ukrainan Kings
2025-09-12 20:48:11,150 - wavelink.websocket - DEBUG - Node(identifier=F73QJyrbe-86VKAY, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 20:48:16,150 - wavelink.websocket - DEBUG - Node(identifier=F73QJyrbe-86VKAY, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 20:48:21,150 - wavelink.websocket - DEBUG - Node(identifier=F73QJyrbe-86VKAY, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_player_update'
2025-09-12 20:48:21,836 - musicbot - INFO - Reset command called by berry_rat
2025-09-12 20:48:21,844 - wavelink.websocket - DEBUG - Node(identifier=F73QJyrbe-86VKAY, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=1) dispatched the event 'on_wavelink_track_end'
2025-09-12 20:48:21,844 - musicbot - INFO - Track ended: Trip to Valhalla - Reason: stopped
2025-09-12 20:48:21,845 - musicbot - INFO - Track ended with reason 'stopped', not auto-advancing
2025-09-12 20:48:21,846 - wavelink.player - DEBUG - Disregarding Inactivity Check Task <Task-65> as it was previously cancelled.
2025-09-12 20:48:21,849 - musicbot - INFO - Successfully disconnected and cleared state
2025-09-12 20:48:21,850 - wavelink.websocket - DEBUG - Node(identifier=F73QJyrbe-86VKAY, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=0) dispatched the event 'on_wavelink_websocket_closed'
2025-09-12 20:48:21,851 - wavelink.websocket - DEBUG - Node(identifier=F73QJyrbe-86VKAY, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=0) dispatched the event 'on_wavelink_player_update'
2025-09-12 20:48:21,851 - musicbot - WARNING - Websocket closed - Code: DiscordVoiceCloseType.CLOSE_NORMAL, Reason:
2025-09-12 20:48:23,460 - discord.ext.commands.bot - ERROR - Ignoring exception in command None
discord.ext.commands.errors.CommandNotFound: Command "kys" is not found
2025-09-12 20:48:43,089 - wavelink.websocket - DEBUG - Node(identifier=F73QJyrbe-86VKAY, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=0) dispatched the event 'on_wavelink_stats_update'
2025-09-13 15:37:15,157 - discord.client - WARNING - PyNaCl is not installed, voice will NOT be supported
2025-09-13 15:37:15,161 - discord.client - INFO - logging in using static token
2025-09-13 15:37:15,805 - musicbot - INFO - Connecting to Lavalink at 192.168.0.8:2333
2025-09-13 15:37:15,819 - musicbot - INFO - Lavalink node connected successfully!
2025-09-13 15:37:15,821 - wavelink.websocket - DEBUG - Node(identifier=akY32Hzc_jQ8MlxO, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTING, players=0) dispatched the event 'on_wavelink_stats_update'
2025-09-13 15:37:15,841 - wavelink.websocket - DEBUG - Node(identifier=akY32Hzc_jQ8MlxO, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=0) dispatched the event 'on_wavelink_node_ready'
2025-09-13 15:37:15,842 - musicbot - INFO - Wavelink node 'akY32Hzc_jQ8MlxO' is ready!
2025-09-13 15:37:16,380 - discord.gateway - INFO - Shard ID None has connected to Gateway (Session ID: 862d6b14405c254ffb8beaaec705cf09).
2025-09-13 15:37:18,409 - musicbot - INFO - Rat_Artist#4817 has connected to Discord!
2025-09-13 15:37:18,409 - musicbot - INFO - Bot is in 4 guilds
2025-09-13 15:38:15,817 - wavelink.websocket - DEBUG - Node(identifier=akY32Hzc_jQ8MlxO, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=0) dispatched the event 'on_wavelink_stats_update'
2025-09-13 15:39:15,812 - wavelink.websocket - DEBUG - Node(identifier=akY32Hzc_jQ8MlxO, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=0) dispatched the event 'on_wavelink_stats_update'
2025-09-13 15:40:15,809 - wavelink.websocket - DEBUG - Node(identifier=akY32Hzc_jQ8MlxO, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=0) dispatched the event 'on_wavelink_stats_update'
2025-09-13 15:41:15,804 - wavelink.websocket - DEBUG - Node(identifier=akY32Hzc_jQ8MlxO, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=0) dispatched the event 'on_wavelink_stats_update'
2025-09-13 15:42:15,800 - wavelink.websocket - DEBUG - Node(identifier=akY32Hzc_jQ8MlxO, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=0) dispatched the event 'on_wavelink_stats_update'
2025-09-13 15:43:15,795 - wavelink.websocket - DEBUG - Node(identifier=akY32Hzc_jQ8MlxO, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=0) dispatched the event 'on_wavelink_stats_update'
2025-09-13 15:44:15,791 - wavelink.websocket - DEBUG - Node(identifier=akY32Hzc_jQ8MlxO, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=0) dispatched the event 'on_wavelink_stats_update'
2025-09-13 15:45:15,785 - wavelink.websocket - DEBUG - Node(identifier=akY32Hzc_jQ8MlxO, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=0) dispatched the event 'on_wavelink_stats_update'
2025-09-13 15:46:15,781 - wavelink.websocket - DEBUG - Node(identifier=akY32Hzc_jQ8MlxO, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=0) dispatched the event 'on_wavelink_stats_update'
2025-09-13 15:47:15,777 - wavelink.websocket - DEBUG - Node(identifier=akY32Hzc_jQ8MlxO, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=0) dispatched the event 'on_wavelink_stats_update'
2025-09-13 15:48:15,772 - wavelink.websocket - DEBUG - Node(identifier=akY32Hzc_jQ8MlxO, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=0) dispatched the event 'on_wavelink_stats_update'
2025-09-13 15:49:15,768 - wavelink.websocket - DEBUG - Node(identifier=akY32Hzc_jQ8MlxO, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=0) dispatched the event 'on_wavelink_stats_update'
2025-09-13 15:50:15,764 - wavelink.websocket - DEBUG - Node(identifier=akY32Hzc_jQ8MlxO, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=0) dispatched the event 'on_wavelink_stats_update'
2025-09-13 15:51:15,760 - wavelink.websocket - DEBUG - Node(identifier=akY32Hzc_jQ8MlxO, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=0) dispatched the event 'on_wavelink_stats_update'
2025-09-13 15:52:15,756 - wavelink.websocket - DEBUG - Node(identifier=akY32Hzc_jQ8MlxO, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=0) dispatched the event 'on_wavelink_stats_update'
2025-09-13 15:53:15,751 - wavelink.websocket - DEBUG - Node(identifier=akY32Hzc_jQ8MlxO, uri=http://192.168.0.8:2333, status=NodeStatus.CONNECTED, players=0) dispatched the event 'on_wavelink_stats_update'
2025-09-13 15:55:07,765 - root - INFO - Logging configured successfully
2025-09-13 15:55:07,766 - discord.client - WARNING - PyNaCl is not installed, voice will NOT be supported
2025-09-13 15:55:07,767 - discord.client - INFO - logging in using static token
2025-09-13 15:55:09,704 - main - INFO - Setting up RatArt Bot...
2025-09-13 15:55:09,712 - database - INFO - Database tables created/verified
2025-09-13 15:55:09,713 - database - INFO - Database connected: database/bot.db
2025-09-13 15:55:09,713 - main - INFO - Loading module: admin
2025-09-13 15:55:09,714 - modules.adminmodule - INFO - Setting up module: Admin Management
2025-09-13 15:55:09,714 - modules.adminmodule - INFO - Module Admin Management loaded successfully
2025-09-13 15:55:09,715 - main - INFO - Module admin loaded successfully
2025-09-13 15:55:09,715 - main - INFO - Loading module: help
2025-09-13 15:55:09,715 - modules.helpmodule - INFO - Setting up module: Help System
2025-09-13 15:55:09,716 - modules.helpmodule - INFO - Module Help System loaded successfully
2025-09-13 15:55:09,716 - main - INFO - Module help loaded successfully
2025-09-13 15:55:09,716 - main - INFO - Loading module: music
2025-09-13 15:55:09,717 - modules.musicmodule - INFO - Setting up module: Music Player
2025-09-13 15:55:09,725 - modules.musicmodule - INFO - Music module setup complete
2025-09-13 15:55:09,726 - modules.musicmodule - INFO - Module Music Player loaded successfully
2025-09-13 15:55:09,726 - main - INFO - Module music loaded successfully
2025-09-13 15:55:09,726 - main - INFO - Bot setup complete!
2025-09-13 15:55:09,736 - modules.musicmodule - INFO - Wavelink node 'eouA-htlltwlz8io' is ready!
2025-09-13 15:55:10,290 - discord.gateway - INFO - Shard ID None has connected to Gateway (Session ID: c8c82f4b1640f3442a1bc26dbc7603a3).
2025-09-13 15:55:12,305 - main - INFO - Rat_Artist#4817 has connected to Discord!
2025-09-13 15:55:12,306 - main - INFO - Bot is in 4 guilds
2025-09-13 15:55:12,306 - main - INFO - Loaded modules: ['admin', 'help', 'music']
2025-09-13 15:57:57,240 - root - INFO - Logging configured successfully
2025-09-13 15:57:57,242 - discord.client - WARNING - PyNaCl is not installed, voice will NOT be supported
2025-09-13 15:57:57,243 - discord.client - INFO - logging in using static token
2025-09-13 15:57:57,889 - main - INFO - Setting up RatArt Bot...
2025-09-13 15:57:57,901 - database - INFO - Database tables created/verified
2025-09-13 15:57:57,902 - database - INFO - Database connected: database/bot.db
2025-09-13 15:57:57,902 - main - INFO - Loading module: admin
2025-09-13 15:57:57,904 - modules.adminmodule - INFO - Setting up module: Admin Management
2025-09-13 15:57:57,904 - modules.adminmodule - INFO - Module Admin Management loaded successfully
2025-09-13 15:57:57,905 - main - INFO - Module admin loaded successfully
2025-09-13 15:57:57,905 - main - INFO - Loading module: help
2025-09-13 15:57:57,906 - modules.helpmodule - INFO - Setting up module: Help System
2025-09-13 15:57:57,907 - modules.helpmodule - INFO - Module Help System loaded successfully
2025-09-13 15:57:57,907 - main - INFO - Module help loaded successfully
2025-09-13 15:57:57,908 - main - INFO - Loading module: music
2025-09-13 15:57:57,909 - modules.musicmodule - INFO - Setting up module: Music Player
2025-09-13 15:57:57,919 - modules.musicmodule - INFO - Music module setup complete
2025-09-13 15:57:57,920 - modules.musicmodule - INFO - Module Music Player loaded successfully
2025-09-13 15:57:57,921 - main - INFO - Module music loaded successfully
2025-09-13 15:57:57,921 - main - INFO - Bot setup complete!
2025-09-13 15:57:57,933 - modules.musicmodule - INFO - Wavelink node 'BiOezGqikG_h0nzp' is ready!
2025-09-13 15:57:58,382 - discord.gateway - INFO - Shard ID None has connected to Gateway (Session ID: f86d27f15a6358c90b4d63be6f8e5166).
2025-09-13 15:58:00,416 - main - INFO - Rat_Artist#4817 has connected to Discord!
2025-09-13 15:58:00,417 - main - INFO - Bot is in 4 guilds
2025-09-13 15:58:00,417 - main - INFO - Loaded modules: ['admin', 'help', 'music']
2025-09-13 15:58:28,217 - modules.musicmodule - INFO - Play command received: 'https://www.youtube.com/watch?v=WtO3AHMBePY&ab_channel=1Mushy' from user berry_rat
2025-09-13 15:58:28,218 - modules.musicmodule - INFO - User in voice channel: Sewer 1 (ID: 618020483840999448)
2025-09-13 15:58:28,219 - modules.musicmodule - INFO - Connecting to voice channel: Sewer 1
2025-09-13 15:58:28,660 - modules.musicmodule - INFO - Successfully connected to Sewer 1
2025-09-13 15:58:28,661 - modules.musicmodule - INFO - Player status - Playing: False, Paused: False, Queue length: 0
2025-09-13 15:58:28,661 - modules.musicmodule - INFO - Searching for: https://www.youtube.com/watch?v=WtO3AHMBePY&ab_channel=1Mushy
2025-09-13 15:58:28,664 - modules.musicmodule - INFO - URL detected, letting Lavalink handle directly (lavasrc will process)
2025-09-13 15:58:28,844 - modules.musicmodule - INFO - Search returned 1 results
2025-09-13 15:58:28,845 - modules.musicmodule - INFO - Handling as single track
2025-09-13 15:58:28,846 - modules.musicmodule - INFO - Handling single track: Dancing triangle pumped up kicks Tongo #DancingTriangle
2025-09-13 15:58:28,847 - modules.musicmodule - INFO - Player is free, playing immediately: Dancing triangle pumped up kicks Tongo #DancingTriangle
2025-09-13 15:58:28,851 - modules.musicmodule - INFO - Track started: Dancing triangle pumped up kicks Tongo #DancingTriangle
2025-09-13 15:58:28,852 - modules.musicmodule - INFO - Player details - Guild: Sewers, Channel: Sewer 1
2025-09-13 15:58:28,853 - modules.musicmodule - INFO - Successfully started playing: Dancing triangle pumped up kicks Tongo #DancingTriangle
2025-09-13 15:58:44,322 - modules.musicmodule - INFO - Play command received: 'https://www.youtube.com/watch?v=WtO3AHMBePY&ab_channel=1Mushy' from user berry_rat
2025-09-13 15:58:44,323 - modules.musicmodule - INFO - User in voice channel: Sewer 1 (ID: 618020483840999448)
2025-09-13 15:58:44,323 - modules.musicmodule - INFO - Already connected to voice channel
2025-09-13 15:58:44,324 - modules.musicmodule - INFO - Player status - Playing: True, Paused: False, Queue length: 0
2025-09-13 15:58:44,324 - modules.musicmodule - INFO - Searching for: https://www.youtube.com/watch?v=WtO3AHMBePY&ab_channel=1Mushy
2025-09-13 15:58:44,325 - modules.musicmodule - INFO - URL detected, letting Lavalink handle directly (lavasrc will process)
2025-09-13 15:58:44,422 - modules.musicmodule - INFO - Search returned 1 results
2025-09-13 15:58:44,423 - modules.musicmodule - INFO - Handling as single track
2025-09-13 15:58:44,423 - modules.musicmodule - INFO - Handling single track: Dancing triangle pumped up kicks Tongo #DancingTriangle
2025-09-13 15:58:44,424 - modules.musicmodule - INFO - Player is busy, adding to queue: Dancing triangle pumped up kicks Tongo #DancingTriangle
2025-09-13 15:59:08,858 - decorators - WARNING - User berry_rat (308237127106428929) attempted to use admin without sufficient permissions
2025-09-13 15:59:54,277 - main - INFO - Shutting down bot...
2025-09-13 15:59:54,277 - modules.adminmodule - INFO - Tearing down module: Admin Management
2025-09-13 15:59:54,279 - modules.adminmodule - INFO - Module Admin Management unloaded successfully
2025-09-13 15:59:54,279 - main - INFO - Module admin shut down
2025-09-13 15:59:54,280 - modules.helpmodule - INFO - Tearing down module: Help System
2025-09-13 15:59:54,281 - modules.helpmodule - INFO - Module Help System unloaded successfully
2025-09-13 15:59:54,281 - main - INFO - Module help shut down
2025-09-13 15:59:54,282 - modules.musicmodule - INFO - Tearing down module: Music Player
2025-09-13 15:59:54,282 - modules.musicmodule - INFO - Music module teardown complete
2025-09-13 15:59:54,292 - modules.musicmodule - INFO - Module Music Player unloaded successfully
2025-09-13 15:59:54,297 - main - INFO - Module music shut down
2025-09-13 15:59:54,298 - database - INFO - Database disconnected
2025-09-13 15:59:54,310 - main - INFO - Bot stopped by user
2025-09-13 15:59:54,343 - asyncio - ERROR - Unclosed client session
client_session: <aiohttp.client.ClientSession object at 0x00000147420943D0>
2025-09-13 15:59:54,347 - asyncio - ERROR - Unclosed connector
connections: ['deque([(<aiohttp.client_proto.ResponseHandler object at 0x00000147420D0220>, 10926.968)])']
connector: <aiohttp.connector.TCPConnector object at 0x0000014742094400>
2025-09-13 15:59:56,066 - root - INFO - Logging configured successfully
2025-09-13 15:59:56,068 - discord.client - WARNING - PyNaCl is not installed, voice will NOT be supported
2025-09-13 15:59:56,069 - discord.client - INFO - logging in using static token
2025-09-13 15:59:56,632 - main - INFO - Setting up RatArt Bot...
2025-09-13 15:59:56,636 - database - INFO - Database tables created/verified
2025-09-13 15:59:56,636 - database - INFO - Database connected: database/bot.db
2025-09-13 15:59:56,637 - main - INFO - Loading module: admin
2025-09-13 15:59:56,638 - modules.adminmodule - INFO - Setting up module: Admin Management
2025-09-13 15:59:56,645 - database - INFO - Added/updated user Owner (308237127106428929) with permission level OWNER
2025-09-13 15:59:56,646 - modules.adminmodule - INFO - Module Admin Management loaded successfully
2025-09-13 15:59:56,647 - main - INFO - Module admin loaded successfully
2025-09-13 15:59:56,647 - main - INFO - Loading module: help
2025-09-13 15:59:56,648 - modules.helpmodule - INFO - Setting up module: Help System
2025-09-13 15:59:56,649 - modules.helpmodule - INFO - Module Help System loaded successfully
2025-09-13 15:59:56,649 - main - INFO - Module help loaded successfully
2025-09-13 15:59:56,650 - main - INFO - Loading module: music
2025-09-13 15:59:56,651 - modules.musicmodule - INFO - Setting up module: Music Player
2025-09-13 15:59:56,662 - modules.musicmodule - INFO - Music module setup complete
2025-09-13 15:59:56,705 - modules.musicmodule - INFO - Module Music Player loaded successfully
2025-09-13 15:59:56,718 - main - INFO - Module music loaded successfully
2025-09-13 15:59:56,724 - main - INFO - Bot setup complete!
2025-09-13 15:59:56,737 - modules.musicmodule - INFO - Wavelink node '0OmXJSt2ovfuwfj4' is ready!
2025-09-13 15:59:57,205 - discord.gateway - INFO - Shard ID None has connected to Gateway (Session ID: 4278c9dc436bdc8bf16796c32b862cce).
2025-09-13 15:59:59,223 - main - INFO - Rat_Artist#4817 has connected to Discord!
2025-09-13 15:59:59,224 - main - INFO - Bot is in 4 guilds
2025-09-13 15:59:59,225 - main - INFO - Loaded modules: ['admin', 'help', 'music']
2025-09-13 16:00:13,301 - decorators - INFO - User berry_rat (308237127106428929) using admin command: admin
2025-09-13 16:04:23,704 - root - INFO - Logging configured successfully
2025-09-13 16:04:23,706 - discord.client - WARNING - PyNaCl is not installed, voice will NOT be supported
2025-09-13 16:04:23,707 - discord.client - INFO - logging in using static token
2025-09-13 16:04:24,417 - main - INFO - Setting up RatArt Bot...
2025-09-13 16:04:24,428 - database - INFO - Database tables created/verified
2025-09-13 16:04:24,429 - database - INFO - Database connected: database/bot.db
2025-09-13 16:04:24,429 - main - INFO - Loading module: admin
2025-09-13 16:04:24,431 - modules.adminmodule - INFO - Setting up module: Admin Management
2025-09-13 16:04:24,439 - database - INFO - Added/updated user Owner (308237127106428929) with permission level OWNER
2025-09-13 16:04:24,439 - modules.adminmodule - INFO - Module Admin Management loaded successfully
2025-09-13 16:04:24,440 - main - INFO - Module admin loaded successfully
2025-09-13 16:04:24,440 - main - INFO - Loading module: help
2025-09-13 16:04:24,441 - modules.helpmodule - INFO - Setting up module: Help System
2025-09-13 16:04:24,441 - modules.helpmodule - INFO - Module Help System loaded successfully
2025-09-13 16:04:24,442 - main - INFO - Module help loaded successfully
2025-09-13 16:04:24,442 - main - INFO - Loading module: music
2025-09-13 16:04:24,443 - modules.musicmodule - INFO - Setting up module: Music Player
2025-09-13 16:04:24,453 - modules.musicmodule - INFO - Music module setup complete
2025-09-13 16:04:24,453 - modules.musicmodule - INFO - Module Music Player loaded successfully
2025-09-13 16:04:24,454 - main - INFO - Module music loaded successfully
2025-09-13 16:04:24,454 - main - INFO - Bot setup complete!
2025-09-13 16:04:24,465 - modules.musicmodule - INFO - Wavelink node '7iK9Me4HieG7xQ_M' is ready!
2025-09-13 16:04:24,880 - discord.gateway - INFO - Shard ID None has connected to Gateway (Session ID: 891e11f8a0d436fd3bd3635cd5d0712c).
2025-09-13 16:04:26,890 - main - INFO - Rat_Artist#4817 has connected to Discord!
2025-09-13 16:04:26,891 - main - INFO - Bot is in 4 guilds
2025-09-13 16:04:26,891 - main - INFO - Loaded modules: ['admin', 'help', 'music']