-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathdebug.log
1082 lines (1076 loc) · 102 KB
/
debug.log
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
INFO 2022-07-28 12:47:29,710 basehttp 35023 140237384705792 "GET /e-register/ HTTP/1.1" 200 10421
INFO 2022-07-28 12:47:29,829 basehttp 35023 140237384705792 "GET /static/assets/plugins/bootstrap/js/bootstrap.js.map HTTP/1.1" 200 289522
INFO 2022-07-28 12:47:29,861 basehttp 35023 140237393098496 "GET /static/assets/main/css/style.css.map HTTP/1.1" 200 43570
INFO 2022-07-28 12:47:29,863 basehttp 35023 140237384705792 "GET /static/assets/plugins/bootstrap/css/bootstrap.min.css.map HTTP/1.1" 200 449111
INFO 2022-07-28 12:47:31,719 basehttp 35023 140237384705792 "GET /static/assets/plugins/bootstrap/js/bootstrap.js.map HTTP/1.1" 200 289522
INFO 2022-07-28 12:47:31,748 basehttp 35023 140237384705792 "GET /static/assets/main/css/style.css.map HTTP/1.1" 200 43570
INFO 2022-07-28 12:47:31,750 basehttp 35023 140237393098496 "GET /static/assets/plugins/bootstrap/css/bootstrap.min.css.map HTTP/1.1" 200 449111
INFO 2022-07-28 12:47:32,138 basehttp 35023 140237384705792 "GET /static/assets/plugins/bootstrap/css/bootstrap.min.css.map HTTP/1.1" 200 449111
INFO 2022-07-28 12:47:32,140 basehttp 35023 140237393098496 "GET /static/assets/main/css/style.css.map HTTP/1.1" 200 43570
INFO 2022-07-28 12:47:32,180 basehttp 35023 140237393098496 "GET /static/assets/plugins/bootstrap/js/bootstrap.js.map HTTP/1.1" 200 289522
INFO 2022-07-28 12:47:33,528 basehttp 35023 140237393098496 "GET /t-register/ HTTP/1.1" 200 6334
INFO 2022-07-28 12:47:33,630 basehttp 35023 140237384705792 "GET /static/assets/main/css/style.css.map HTTP/1.1" 200 43570
INFO 2022-07-28 12:47:33,631 basehttp 35023 140237393098496 "GET /static/assets/plugins/bootstrap/css/bootstrap.min.css.map HTTP/1.1" 200 449111
INFO 2022-07-28 12:47:33,672 basehttp 35023 140237393098496 "GET /static/assets/plugins/bootstrap/js/bootstrap.js.map HTTP/1.1" 200 289522
INFO 2022-07-28 12:47:40,364 basehttp 35023 140237393098496 "POST /t-register/ HTTP/1.1" 302 0
INFO 2022-07-28 12:47:40,391 basehttp 35023 140237393098496 "GET /t-register/ HTTP/1.1" 200 6582
INFO 2022-07-28 12:47:40,512 basehttp 35023 140237384705792 "GET /static/assets/plugins/bootstrap/css/bootstrap.min.css.map HTTP/1.1" 200 449111
INFO 2022-07-28 12:47:40,513 basehttp 35023 140237393098496 "GET /static/assets/main/css/style.css.map HTTP/1.1" 200 43570
INFO 2022-07-28 12:47:40,548 basehttp 35023 140237384705792 "GET /static/assets/plugins/bootstrap/js/bootstrap.js.map HTTP/1.1" 200 289522
INFO 2022-07-28 12:50:00,424 autoreload 35023 140237534906176 /home/xbwafi/Desktop/django/AMS/accounts/models.py changed, reloading.
INFO 2022-07-28 12:50:00,726 autoreload 36246 140524600727360 Watching for file changes with StatReloader
INFO 2022-07-28 12:50:29,026 autoreload 36558 139870020196160 Watching for file changes with StatReloader
INFO 2022-07-28 12:51:42,109 autoreload 36558 139870020196160 /home/xbwafi/Desktop/django/AMS/accounts/models.py changed, reloading.
INFO 2022-07-28 12:51:42,423 autoreload 36716 139975750166336 Watching for file changes with StatReloader
INFO 2022-07-28 12:51:53,590 autoreload 36919 140453619664704 Watching for file changes with StatReloader
INFO 2022-07-28 12:51:56,861 basehttp 36919 140453477910272 "GET /t-register/ HTTP/1.1" 200 6334
INFO 2022-07-28 12:51:56,954 basehttp 36919 140453468731136 "GET /static/assets/main/css/style.css.map HTTP/1.1" 200 43570
INFO 2022-07-28 12:51:56,955 basehttp 36919 140453477910272 "GET /static/assets/plugins/bootstrap/css/bootstrap.min.css.map HTTP/1.1" 200 449111
INFO 2022-07-28 12:51:57,015 basehttp 36919 140453477910272 "GET /static/assets/plugins/bootstrap/js/bootstrap.js.map HTTP/1.1" 200 289522
INFO 2022-07-28 12:53:19,932 autoreload 36919 140453619664704 /home/xbwafi/Desktop/django/AMS/accounts/forms.py changed, reloading.
INFO 2022-07-28 12:53:20,240 autoreload 37051 140476680968000 Watching for file changes with StatReloader
INFO 2022-07-28 12:54:05,738 basehttp 37051 140476539229952 "GET /t-register/ HTTP/1.1" 200 6336
INFO 2022-07-28 12:54:07,722 basehttp 37051 140476539229952 "GET /t-register/ HTTP/1.1" 200 6336
INFO 2022-07-28 12:54:15,531 basehttp 37051 140476539229952 "POST /t-register/ HTTP/1.1" 302 0
INFO 2022-07-28 12:54:15,558 basehttp 37051 140476539229952 "GET /t-register/ HTTP/1.1" 200 6584
INFO 2022-07-28 12:54:25,177 basehttp 37051 140476539229952 "GET /e-register/ HTTP/1.1" 200 10422
INFO 2022-07-28 12:54:29,795 basehttp 37051 140476539229952 "POST /e-register/ HTTP/1.1" 200 10505
INFO 2022-07-28 12:54:41,722 basehttp 37051 140476539229952 "POST /e-register/ HTTP/1.1" 200 10508
INFO 2022-07-28 12:56:51,176 autoreload 37051 140476680968000 /home/xbwafi/Desktop/django/AMS/accounts/views.py changed, reloading.
INFO 2022-07-28 12:56:51,503 autoreload 37340 140392779417408 Watching for file changes with StatReloader
INFO 2022-07-28 12:56:58,160 basehttp 37340 140392704800512 "POST /e-register/ HTTP/1.1" 200 10508
INFO 2022-07-28 12:57:05,708 basehttp 37340 140392704800512 "GET /t-register/ HTTP/1.1" 200 6336
INFO 2022-07-28 12:57:10,840 basehttp 37340 140392704800512 "POST /t-register/ HTTP/1.1" 302 0
INFO 2022-07-28 12:57:10,866 basehttp 37340 140392704800512 "GET /t-register/ HTTP/1.1" 200 6584
INFO 2022-07-28 12:57:41,369 basehttp 37340 140392704800512 "GET /t-register/ HTTP/1.1" 200 6336
INFO 2022-07-28 12:57:48,434 basehttp 37340 140392704800512 "POST /t-register/ HTTP/1.1" 302 0
INFO 2022-07-28 12:57:48,459 basehttp 37340 140392704800512 "GET /t-register/ HTTP/1.1" 200 6584
INFO 2022-07-28 12:58:22,519 basehttp 37340 140392704800512 "GET /t-register/ HTTP/1.1" 200 6336
INFO 2022-07-28 12:58:25,631 basehttp 37340 140392704800512 "POST /e-register/ HTTP/1.1" 200 10508
INFO 2022-07-28 12:58:28,466 basehttp 37340 140392704800512 "POST /e-register/ HTTP/1.1" 200 10508
INFO 2022-07-28 12:58:35,900 basehttp 37340 140392704800512 "POST /e-register/ HTTP/1.1" 200 10508
INFO 2022-07-28 12:58:35,920 basehttp 37340 140392704800512 "GET /static/assets/main/css/fonts.css HTTP/1.1" 200 917
INFO 2022-07-28 12:58:35,933 basehttp 37340 140392464897792 "GET /static/assets/js/toggleFullScreen.js HTTP/1.1" 200 940
INFO 2022-07-28 12:58:35,935 basehttp 37340 140392456505088 "GET /static/assets/js/main.js HTTP/1.1" 200 8268
INFO 2022-07-28 12:58:35,937 basehttp 37340 140392481683200 "GET /static/assets/plugins/jquery/jquery.min.js HTTP/1.1" 200 72380
INFO 2022-07-28 12:58:35,937 basehttp 37340 140392695359232 "GET /static/assets/main/css/style.css HTTP/1.1" 200 88820
INFO 2022-07-28 12:58:35,938 basehttp 37340 140392473290496 "GET /static/assets/plugins/bootstrap/js/bootstrap.js HTTP/1.1" 200 148168
INFO 2022-07-28 12:58:35,976 basehttp 37340 140392464897792 "GET /static/assets/fonts/simple-line-icons/css/simple-line-icons.css HTTP/1.1" 200 10621
INFO 2022-07-28 12:58:35,978 basehttp 37340 140392473290496 "GET /static/assets/plugins/datatables/css/dataTables.bootstrap.min.css HTTP/1.1" 200 4356
INFO 2022-07-28 12:58:35,979 basehttp 37340 140392456505088 "GET /static/assets/plugins/daterangepicker/daterangepicker.css HTTP/1.1" 200 8069
INFO 2022-07-28 12:58:35,980 basehttp 37340 140392695359232 "GET /static/assets/fonts/fontawesome/css/all.min.css HTTP/1.1" 200 74967
INFO 2022-07-28 12:58:35,980 basehttp 37340 140392704800512 "GET /static/assets/plugins/bootstrap/css/bootstrap.min.css HTTP/1.1" 200 162720
WARNING 2022-07-28 12:58:36,057 log 37340 140392695359232 Not Found: /favicon.ico
WARNING 2022-07-28 12:58:36,057 basehttp 37340 140392695359232 "GET /favicon.ico HTTP/1.1" 404 4663
INFO 2022-07-28 12:58:38,208 basehttp 37340 140392695359232 "GET /e-register/ HTTP/1.1" 200 10422
INFO 2022-07-28 12:58:42,767 basehttp 37340 140392695359232 "POST /e-register/ HTTP/1.1" 200 10509
INFO 2022-07-28 12:58:51,014 autoreload 37694 140479011690304 Watching for file changes with StatReloader
INFO 2022-07-28 12:58:56,177 basehttp 37694 140478937073408 "POST /e-register/ HTTP/1.1" 200 10514
INFO 2022-07-28 12:59:14,536 autoreload 37694 140479011690304 /home/xbwafi/Desktop/django/AMS/accounts/views.py changed, reloading.
INFO 2022-07-28 12:59:14,860 autoreload 37782 140220721682240 Watching for file changes with StatReloader
INFO 2022-07-28 12:59:26,201 autoreload 37782 140220721682240 /home/xbwafi/Desktop/django/AMS/accounts/urls.py changed, reloading.
INFO 2022-07-28 12:59:26,561 autoreload 37838 140680591886144 Watching for file changes with StatReloader
WARNING 2022-07-28 12:59:29,888 log 37838 140680445818624 Not Found: /e-register/
WARNING 2022-07-28 12:59:29,889 basehttp 37838 140680445818624 "POST /e-register/ HTTP/1.1" 404 4487
INFO 2022-07-28 12:59:33,933 basehttp 37838 140680445818624 "GET /t-register/ HTTP/1.1" 200 6336
INFO 2022-07-28 12:59:39,207 basehttp 37838 140680445818624 "POST /t-register/ HTTP/1.1" 302 0
INFO 2022-07-28 12:59:39,227 basehttp 37838 140680445818624 "GET /t-register/ HTTP/1.1" 200 6584
INFO 2022-07-28 13:11:58,948 autoreload 37838 140680591886144 /home/xbwafi/Desktop/django/AMS/accounts/views.py changed, reloading.
INFO 2022-07-28 13:11:59,280 autoreload 38530 140087126124352 Watching for file changes with StatReloader
INFO 2022-07-28 13:12:01,371 basehttp 38530 140086984390400 "GET /t-register/ HTTP/1.1" 200 6336
INFO 2022-07-28 13:12:06,155 basehttp 38530 140086984390400 "POST /t-register/ HTTP/1.1" 302 0
INFO 2022-07-28 13:12:06,184 basehttp 38530 140086984390400 "GET /t-register/ HTTP/1.1" 200 6584
INFO 2022-07-28 13:12:57,390 autoreload 38530 140087126124352 /home/xbwafi/Desktop/django/AMS/accounts/views.py changed, reloading.
INFO 2022-07-28 13:12:57,736 autoreload 38630 140259089397568 Watching for file changes with StatReloader
INFO 2022-07-28 13:13:11,086 autoreload 38630 140259089397568 /home/xbwafi/Desktop/django/AMS/accounts/views.py changed, reloading.
INFO 2022-07-28 13:13:11,393 autoreload 38683 139912976635712 Watching for file changes with StatReloader
INFO 2022-07-28 13:13:12,719 basehttp 38683 139912834885376 "GET /t-register/ HTTP/1.1" 200 6336
INFO 2022-07-28 13:13:17,005 basehttp 38683 139912834885376 "POST /t-register/ HTTP/1.1" 302 0
INFO 2022-07-28 13:13:17,028 basehttp 38683 139912834885376 "GET /t-register/ HTTP/1.1" 200 6584
INFO 2022-07-28 13:14:02,241 autoreload 38683 139912976635712 /home/xbwafi/Desktop/django/AMS/accounts/views.py changed, reloading.
INFO 2022-07-28 13:14:02,610 autoreload 38791 139919695476544 Watching for file changes with StatReloader
INFO 2022-07-28 13:14:03,854 basehttp 38791 139919554270976 "GET /t-register/ HTTP/1.1" 200 6336
INFO 2022-07-28 13:14:08,585 basehttp 38791 139919554270976 "POST /t-register/ HTTP/1.1" 302 0
INFO 2022-07-28 13:14:08,603 basehttp 38791 139919554270976 "GET /t-register/ HTTP/1.1" 200 6584
INFO 2022-07-28 13:14:23,185 autoreload 38955 139883873769280 Watching for file changes with StatReloader
INFO 2022-07-28 13:15:42,265 autoreload 38955 139883873769280 /home/xbwafi/Desktop/django/AMS/accounts/views.py changed, reloading.
INFO 2022-07-28 13:15:42,574 autoreload 39044 140428133025600 Watching for file changes with StatReloader
INFO 2022-07-28 13:15:54,907 autoreload 39044 140428133025600 /home/xbwafi/Desktop/django/AMS/accounts/views.py changed, reloading.
INFO 2022-07-28 13:15:55,241 autoreload 39110 140327724074816 Watching for file changes with StatReloader
INFO 2022-07-28 13:15:58,500 autoreload 39110 140327724074816 /home/xbwafi/Desktop/django/AMS/accounts/views.py changed, reloading.
INFO 2022-07-28 13:15:58,869 autoreload 39143 140420235306816 Watching for file changes with StatReloader
INFO 2022-07-28 13:15:59,632 basehttp 39143 140420161214208 "GET /t-register/ HTTP/1.1" 200 6336
INFO 2022-07-28 13:16:04,602 basehttp 39143 140420161214208 "POST /t-register/ HTTP/1.1" 302 0
INFO 2022-07-28 13:16:04,638 basehttp 39143 140420161214208 "GET /t-register/ HTTP/1.1" 200 6584
INFO 2022-07-28 13:16:23,485 autoreload 39143 140420235306816 /home/xbwafi/Desktop/django/AMS/accounts/views.py changed, reloading.
INFO 2022-07-28 13:16:23,818 autoreload 39200 139950904256320 Watching for file changes with StatReloader
INFO 2022-07-28 13:16:25,366 basehttp 39200 139950762514176 "GET /t-register/ HTTP/1.1" 200 6336
INFO 2022-07-28 13:16:25,600 basehttp 39200 139950762514176 "GET /t-register/ HTTP/1.1" 200 6336
INFO 2022-07-28 13:16:25,771 basehttp 39200 139950762514176 "GET /t-register/ HTTP/1.1" 200 6336
INFO 2022-07-28 13:16:25,877 basehttp 39200 139950762514176 "GET /t-register/ HTTP/1.1" 200 6336
INFO 2022-07-28 13:16:32,426 basehttp 39200 139950762514176 "POST /t-register/ HTTP/1.1" 302 0
INFO 2022-07-28 13:16:32,472 basehttp 39200 139950762514176 "GET /t-register/ HTTP/1.1" 200 6584
INFO 2022-07-29 07:29:12,014 autoreload 3470 140612761212736 Watching for file changes with StatReloader
INFO 2022-07-29 07:29:20,312 autoreload 4013 140109575276352 Watching for file changes with StatReloader
INFO 2022-07-29 07:29:23,777 basehttp 4013 140109500659456 "GET / HTTP/1.1" 200 8767
WARNING 2022-07-29 07:29:24,350 log 4013 140109500659456 Not Found: /favicon.ico
WARNING 2022-07-29 07:29:24,351 basehttp 4013 140109500659456 "GET /favicon.ico HTTP/1.1" 404 4486
INFO 2022-07-29 07:29:36,086 basehttp 4013 140109500659456 "GET /t-register/ HTTP/1.1" 200 6336
INFO 2022-07-29 07:29:44,712 basehttp 4013 140109500659456 "POST /t-register/ HTTP/1.1" 302 0
INFO 2022-07-29 07:29:44,734 basehttp 4013 140109500659456 "GET /t-register/ HTTP/1.1" 200 6584
INFO 2022-07-29 07:30:10,007 autoreload 4013 140109575276352 /home/xbwafi/Desktop/django/AMS/accounts/views.py changed, reloading.
INFO 2022-07-29 07:30:10,394 autoreload 4442 139731822315328 Watching for file changes with StatReloader
INFO 2022-07-29 07:30:11,664 basehttp 4442 139731748222720 "GET /t-register/ HTTP/1.1" 200 6336
INFO 2022-07-29 07:30:17,504 basehttp 4442 139731748222720 "POST /t-register/ HTTP/1.1" 302 0
INFO 2022-07-29 07:30:17,557 basehttp 4442 139731748222720 "GET /t-register/ HTTP/1.1" 200 6584
INFO 2022-07-29 07:31:45,799 autoreload 4442 139731822315328 /home/xbwafi/Desktop/django/AMS/accounts/views.py changed, reloading.
INFO 2022-07-29 07:31:46,112 autoreload 4583 139965418325824 Watching for file changes with StatReloader
INFO 2022-07-29 07:32:03,549 autoreload 4583 139965418325824 /home/xbwafi/Desktop/django/AMS/accounts/views.py changed, reloading.
INFO 2022-07-29 07:32:03,873 autoreload 4638 140010606389056 Watching for file changes with StatReloader
INFO 2022-07-29 07:32:06,257 basehttp 4638 140010531772160 "GET /t-register/ HTTP/1.1" 200 6336
INFO 2022-07-29 07:32:15,578 basehttp 4638 140010531772160 "POST /t-register/ HTTP/1.1" 302 0
INFO 2022-07-29 07:32:15,600 basehttp 4638 140010531772160 "GET /t-register/ HTTP/1.1" 200 6584
INFO 2022-07-29 07:33:08,972 autoreload 4638 140010606389056 /home/xbwafi/Desktop/django/AMS/accounts/views.py changed, reloading.
INFO 2022-07-29 07:33:09,306 autoreload 4749 140548507014976 Watching for file changes with StatReloader
INFO 2022-07-29 07:33:11,327 basehttp 4749 140548365252352 "GET /t-register/ HTTP/1.1" 200 6336
INFO 2022-07-29 07:33:16,327 basehttp 4749 140548365252352 "POST /t-register/ HTTP/1.1" 302 0
INFO 2022-07-29 07:33:16,337 basehttp 4749 140548365252352 "GET /t-login/ HTTP/1.1" 200 9742
INFO 2022-07-29 07:34:14,521 autoreload 4749 140548507014976 /home/xbwafi/Desktop/django/AMS/accounts/views.py changed, reloading.
INFO 2022-07-29 07:34:14,856 autoreload 4954 140179677452096 Watching for file changes with StatReloader
INFO 2022-07-29 07:35:57,308 autoreload 4954 140179677452096 /home/xbwafi/Desktop/django/AMS/accounts/views.py changed, reloading.
INFO 2022-07-29 07:35:57,609 autoreload 5060 140001415116608 Watching for file changes with StatReloader
WARNING 2022-07-29 07:36:07,373 log 5060 140001273341696 Not Found: /e-register/
WARNING 2022-07-29 07:36:07,374 basehttp 5060 140001273341696 "GET /e-register/ HTTP/1.1" 404 4486
INFO 2022-07-29 07:36:21,198 autoreload 5060 140001415116608 /home/xbwafi/Desktop/django/AMS/accounts/urls.py changed, reloading.
INFO 2022-07-29 07:36:21,516 autoreload 5137 140443799934784 Watching for file changes with StatReloader
INFO 2022-07-29 07:36:22,184 basehttp 5137 140443658725120 "GET /e-register/ HTTP/1.1" 200 10422
INFO 2022-07-29 07:36:28,025 basehttp 5137 140443658725120 "POST /e-register/ HTTP/1.1" 200 10508
INFO 2022-07-29 07:37:05,334 autoreload 5137 140443799934784 /home/xbwafi/Desktop/django/AMS/accounts/views.py changed, reloading.
INFO 2022-07-29 07:37:05,692 autoreload 5231 139927610484544 Watching for file changes with StatReloader
INFO 2022-07-29 07:37:07,738 basehttp 5231 139927468738304 "POST /e-register/ HTTP/1.1" 200 10508
INFO 2022-07-29 07:37:13,949 basehttp 5231 139927468738304 "POST /e-register/ HTTP/1.1" 200 10511
INFO 2022-07-29 07:37:25,691 basehttp 5231 139927468738304 "POST /e-register/ HTTP/1.1" 200 10511
INFO 2022-07-29 07:37:25,711 basehttp 5231 139927468738304 "GET /static/assets/main/css/fonts.css HTTP/1.1" 200 917
INFO 2022-07-29 07:37:25,721 basehttp 5231 139927434381056 "GET /static/assets/js/toggleFullScreen.js HTTP/1.1" 200 940
INFO 2022-07-29 07:37:25,721 basehttp 5231 139927425988352 "GET /static/assets/js/main.js HTTP/1.1" 200 8268
INFO 2022-07-29 07:37:25,725 basehttp 5231 139927451166464 "GET /static/assets/plugins/jquery/jquery.min.js HTTP/1.1" 200 72380
INFO 2022-07-29 07:37:25,725 basehttp 5231 139927459559168 "GET /static/assets/main/css/style.css HTTP/1.1" 200 88820
INFO 2022-07-29 07:37:25,726 basehttp 5231 139927442773760 "GET /static/assets/plugins/bootstrap/js/bootstrap.js HTTP/1.1" 200 148168
INFO 2022-07-29 07:37:25,752 basehttp 5231 139927459559168 "GET /static/assets/plugins/datatables/css/dataTables.bootstrap.min.css HTTP/1.1" 200 4356
INFO 2022-07-29 07:37:25,753 basehttp 5231 139927425988352 "GET /static/assets/plugins/daterangepicker/daterangepicker.css HTTP/1.1" 200 8069
INFO 2022-07-29 07:37:25,754 basehttp 5231 139927468738304 "GET /static/assets/fonts/simple-line-icons/css/simple-line-icons.css HTTP/1.1" 200 10621
INFO 2022-07-29 07:37:25,755 basehttp 5231 139927434381056 "GET /static/assets/fonts/fontawesome/css/all.min.css HTTP/1.1" 200 74967
INFO 2022-07-29 07:37:25,755 basehttp 5231 139927442773760 "GET /static/assets/plugins/bootstrap/css/bootstrap.min.css HTTP/1.1" 200 162720
WARNING 2022-07-29 07:37:25,933 log 5231 139927442773760 Not Found: /favicon.ico
WARNING 2022-07-29 07:37:25,934 basehttp 5231 139927442773760 "GET /favicon.ico HTTP/1.1" 404 4663
INFO 2022-07-29 07:37:28,906 basehttp 5231 139927442773760 "GET /e-register/ HTTP/1.1" 200 10422
INFO 2022-07-29 07:37:29,421 basehttp 5231 139927442773760 "GET /t-login/ HTTP/1.1" 200 9485
INFO 2022-07-29 07:37:30,570 basehttp 5231 139927442773760 "GET /t-login/ HTTP/1.1" 200 9485
INFO 2022-07-29 07:37:32,065 basehttp 5231 139927442773760 "GET /e-register/ HTTP/1.1" 200 10422
INFO 2022-07-29 07:37:32,656 basehttp 5231 139927442773760 "GET /e-register/ HTTP/1.1" 200 10422
INFO 2022-07-29 07:37:32,781 basehttp 5231 139927442773760 "GET /e-register/ HTTP/1.1" 200 10422
INFO 2022-07-29 07:37:32,951 basehttp 5231 139927442773760 "GET /e-register/ HTTP/1.1" 200 10422
INFO 2022-07-29 07:37:33,060 basehttp 5231 139927442773760 "GET /e-register/ HTTP/1.1" 200 10422
INFO 2022-07-29 07:37:33,161 basehttp 5231 139927442773760 "GET /e-register/ HTTP/1.1" 200 10422
INFO 2022-07-29 07:37:37,494 basehttp 5231 139927442773760 "POST /e-register/ HTTP/1.1" 200 10511
INFO 2022-07-29 07:37:52,650 autoreload 5231 139927610484544 /home/xbwafi/Desktop/django/AMS/accounts/views.py changed, reloading.
INFO 2022-07-29 07:37:52,971 autoreload 5463 140324497205056 Watching for file changes with StatReloader
INFO 2022-07-29 07:37:55,401 basehttp 5463 140324355454720 "POST /e-register/ HTTP/1.1" 200 10511
INFO 2022-07-29 07:38:00,883 basehttp 5463 140324355454720 "POST /e-register/ HTTP/1.1" 200 10511
INFO 2022-07-29 07:38:00,936 basehttp 5463 140324355454720 "GET /static/assets/main/css/fonts.css HTTP/1.1" 200 917
INFO 2022-07-29 07:38:00,941 basehttp 5463 140324355454720 "GET /static/assets/plugins/bootstrap/js/bootstrap.js HTTP/1.1" 200 148168
INFO 2022-07-29 07:38:00,942 basehttp 5463 140324337882880 "GET /static/assets/plugins/jquery/jquery.min.js HTTP/1.1" 200 72380
INFO 2022-07-29 07:38:00,944 basehttp 5463 140324346275584 "GET /static/assets/main/css/style.css HTTP/1.1" 200 88820
INFO 2022-07-29 07:38:00,946 basehttp 5463 140324329490176 "GET /static/assets/js/toggleFullScreen.js HTTP/1.1" 200 940
INFO 2022-07-29 07:38:00,947 basehttp 5463 140324321097472 "GET /static/assets/js/main.js HTTP/1.1" 200 8268
INFO 2022-07-29 07:38:00,968 basehttp 5463 140324321097472 "GET /static/assets/plugins/bootstrap/css/bootstrap.min.css HTTP/1.1" 200 162720
INFO 2022-07-29 07:38:00,970 basehttp 5463 140324355454720 "GET /static/assets/plugins/daterangepicker/daterangepicker.css HTTP/1.1" 200 8069
INFO 2022-07-29 07:38:00,974 basehttp 5463 140324329490176 "GET /static/assets/plugins/datatables/css/dataTables.bootstrap.min.css HTTP/1.1" 200 4356
INFO 2022-07-29 07:38:00,977 basehttp 5463 140324312704768 "GET /static/assets/fonts/simple-line-icons/css/simple-line-icons.css HTTP/1.1" 200 10621
INFO 2022-07-29 07:38:00,979 basehttp 5463 140324346275584 "GET /static/assets/fonts/fontawesome/css/all.min.css HTTP/1.1" 200 74967
WARNING 2022-07-29 07:38:01,057 log 5463 140324312704768 Not Found: /favicon.ico
WARNING 2022-07-29 07:38:01,057 basehttp 5463 140324312704768 "GET /favicon.ico HTTP/1.1" 404 4663
INFO 2022-07-29 07:38:01,752 basehttp 5463 140324312704768 "POST /e-register/ HTTP/1.1" 200 10511
INFO 2022-07-29 07:38:01,778 basehttp 5463 140324312704768 "GET /static/assets/main/css/fonts.css HTTP/1.1" 200 917
INFO 2022-07-29 07:38:01,779 basehttp 5463 140324321097472 "GET /static/assets/js/main.js HTTP/1.1" 200 8268
INFO 2022-07-29 07:38:01,779 basehttp 5463 140324355454720 "GET /static/assets/js/toggleFullScreen.js HTTP/1.1" 200 940
INFO 2022-07-29 07:38:01,780 basehttp 5463 140324337882880 "GET /static/assets/plugins/jquery/jquery.min.js HTTP/1.1" 200 72380
INFO 2022-07-29 07:38:01,781 basehttp 5463 140324329490176 "GET /static/assets/plugins/bootstrap/js/bootstrap.js HTTP/1.1" 200 148168
INFO 2022-07-29 07:38:01,782 basehttp 5463 140324346275584 "GET /static/assets/main/css/style.css HTTP/1.1" 200 88820
INFO 2022-07-29 07:38:01,798 basehttp 5463 140324337882880 "GET /static/assets/plugins/datatables/css/dataTables.bootstrap.min.css HTTP/1.1" 200 4356
INFO 2022-07-29 07:38:01,799 basehttp 5463 140324329490176 "GET /static/assets/plugins/daterangepicker/daterangepicker.css HTTP/1.1" 200 8069
INFO 2022-07-29 07:38:01,800 basehttp 5463 140324312704768 "GET /static/assets/fonts/simple-line-icons/css/simple-line-icons.css HTTP/1.1" 200 10621
INFO 2022-07-29 07:38:01,800 basehttp 5463 140324355454720 "GET /static/assets/fonts/fontawesome/css/all.min.css HTTP/1.1" 200 74967
INFO 2022-07-29 07:38:01,801 basehttp 5463 140324321097472 "GET /static/assets/plugins/bootstrap/css/bootstrap.min.css HTTP/1.1" 200 162720
INFO 2022-07-29 07:38:01,863 basehttp 5463 140324355454720 "POST /e-register/ HTTP/1.1" 200 10511
INFO 2022-07-29 07:38:01,904 basehttp 5463 140324329490176 "GET /static/assets/js/toggleFullScreen.js HTTP/1.1" 200 940
INFO 2022-07-29 07:38:01,904 basehttp 5463 140324355454720 "GET /static/assets/main/css/fonts.css HTTP/1.1" 200 917
INFO 2022-07-29 07:38:01,905 basehttp 5463 140324337882880 "GET /static/assets/js/main.js HTTP/1.1" 200 8268
INFO 2022-07-29 07:38:01,906 basehttp 5463 140324346275584 "GET /static/assets/main/css/style.css HTTP/1.1" 200 88820
INFO 2022-07-29 07:38:01,907 basehttp 5463 140324312704768 "GET /static/assets/plugins/bootstrap/js/bootstrap.js HTTP/1.1" 200 148168
INFO 2022-07-29 07:38:01,907 basehttp 5463 140324321097472 "GET /static/assets/plugins/jquery/jquery.min.js HTTP/1.1" 200 72380
INFO 2022-07-29 07:38:01,924 basehttp 5463 140324337882880 "GET /static/assets/plugins/daterangepicker/daterangepicker.css HTTP/1.1" 200 8069
INFO 2022-07-29 07:38:01,925 basehttp 5463 140324329490176 "GET /static/assets/fonts/simple-line-icons/css/simple-line-icons.css HTTP/1.1" 200 10621
INFO 2022-07-29 07:38:01,926 basehttp 5463 140324346275584 "GET /static/assets/plugins/datatables/css/dataTables.bootstrap.min.css HTTP/1.1" 200 4356
INFO 2022-07-29 07:38:01,926 basehttp 5463 140324355454720 "GET /static/assets/fonts/fontawesome/css/all.min.css HTTP/1.1" 200 74967
INFO 2022-07-29 07:38:01,927 basehttp 5463 140324312704768 "GET /static/assets/plugins/bootstrap/css/bootstrap.min.css HTTP/1.1" 200 162720
WARNING 2022-07-29 07:38:02,046 log 5463 140324312704768 Not Found: /favicon.ico
WARNING 2022-07-29 07:38:02,046 basehttp 5463 140324312704768 "GET /favicon.ico HTTP/1.1" 404 4663
INFO 2022-07-29 07:38:02,192 basehttp 5463 140324312704768 "POST /e-register/ HTTP/1.1" 200 10511
INFO 2022-07-29 07:38:02,244 basehttp 5463 140324312704768 "GET /static/assets/main/css/fonts.css HTTP/1.1" 200 917
INFO 2022-07-29 07:38:02,248 basehttp 5463 140324337882880 "GET /static/assets/js/toggleFullScreen.js HTTP/1.1" 200 940
INFO 2022-07-29 07:38:02,250 basehttp 5463 140324329490176 "GET /static/assets/main/css/style.css HTTP/1.1" 200 88820
INFO 2022-07-29 07:38:02,251 basehttp 5463 140324346275584 "GET /static/assets/plugins/bootstrap/js/bootstrap.js HTTP/1.1" 200 148168
INFO 2022-07-29 07:38:02,251 basehttp 5463 140324355454720 "GET /static/assets/plugins/jquery/jquery.min.js HTTP/1.1" 200 72380
INFO 2022-07-29 07:38:02,252 basehttp 5463 140324321097472 "GET /static/assets/js/main.js HTTP/1.1" 200 8268
INFO 2022-07-29 07:38:02,285 basehttp 5463 140324329490176 "GET /static/assets/plugins/daterangepicker/daterangepicker.css HTTP/1.1" 200 8069
INFO 2022-07-29 07:38:02,286 basehttp 5463 140324312704768 "GET /static/assets/plugins/datatables/css/dataTables.bootstrap.min.css HTTP/1.1" 200 4356
INFO 2022-07-29 07:38:02,290 basehttp 5463 140324329490176 "GET /static/assets/fonts/simple-line-icons/css/simple-line-icons.css HTTP/1.1" 200 10621
INFO 2022-07-29 07:38:02,291 basehttp 5463 140324321097472 "GET /static/assets/fonts/fontawesome/css/all.min.css HTTP/1.1" 200 74967
INFO 2022-07-29 07:38:02,295 basehttp 5463 140324346275584 "GET /static/assets/plugins/bootstrap/css/bootstrap.min.css HTTP/1.1" 200 162720
INFO 2022-07-29 07:38:02,302 basehttp 5463 140324337882880 "POST /e-register/ HTTP/1.1" 200 10511
INFO 2022-07-29 07:38:02,386 basehttp 5463 140324329490176 "GET /static/assets/js/toggleFullScreen.js HTTP/1.1" 200 940
INFO 2022-07-29 07:38:02,387 basehttp 5463 140324312704768 "GET /static/assets/js/main.js HTTP/1.1" 200 8268
INFO 2022-07-29 07:38:02,388 basehttp 5463 140324337882880 "GET /static/assets/main/css/fonts.css HTTP/1.1" 200 917
INFO 2022-07-29 07:38:02,388 basehttp 5463 140324355454720 "GET /static/assets/plugins/bootstrap/js/bootstrap.js HTTP/1.1" 200 148168
INFO 2022-07-29 07:38:02,389 basehttp 5463 140324346275584 "GET /static/assets/plugins/jquery/jquery.min.js HTTP/1.1" 200 72380
INFO 2022-07-29 07:38:02,389 basehttp 5463 140324321097472 "GET /static/assets/main/css/style.css HTTP/1.1" 200 88820
INFO 2022-07-29 07:38:02,404 basehttp 5463 140324355454720 "GET /static/assets/plugins/daterangepicker/daterangepicker.css HTTP/1.1" 200 8069
INFO 2022-07-29 07:38:02,406 basehttp 5463 140324337882880 "GET /static/assets/plugins/datatables/css/dataTables.bootstrap.min.css HTTP/1.1" 200 4356
INFO 2022-07-29 07:38:02,415 basehttp 5463 140324355454720 "GET /static/assets/fonts/fontawesome/css/all.min.css HTTP/1.1" 200 74967
INFO 2022-07-29 07:38:02,416 basehttp 5463 140324337882880 "GET /static/assets/fonts/simple-line-icons/css/simple-line-icons.css HTTP/1.1" 200 10621
INFO 2022-07-29 07:38:02,419 basehttp 5463 140324312704768 "GET /static/assets/plugins/bootstrap/css/bootstrap.min.css HTTP/1.1" 200 162720
INFO 2022-07-29 07:38:02,427 basehttp 5463 140324329490176 "POST /e-register/ HTTP/1.1" 200 10511
INFO 2022-07-29 07:38:02,499 basehttp 5463 140324329490176 "GET /static/assets/main/css/fonts.css HTTP/1.1" 200 917
INFO 2022-07-29 07:38:02,500 basehttp 5463 140324346275584 "GET /static/assets/js/toggleFullScreen.js HTTP/1.1" 200 940
INFO 2022-07-29 07:38:02,500 basehttp 5463 140324312704768 "GET /static/assets/js/main.js HTTP/1.1" 200 8268
INFO 2022-07-29 07:38:02,501 basehttp 5463 140324337882880 "GET /static/assets/main/css/style.css HTTP/1.1" 200 88820
INFO 2022-07-29 07:38:02,502 basehttp 5463 140324355454720 "GET /static/assets/plugins/jquery/jquery.min.js HTTP/1.1" 200 72380
INFO 2022-07-29 07:38:02,502 basehttp 5463 140324321097472 "GET /static/assets/plugins/bootstrap/js/bootstrap.js HTTP/1.1" 200 148168
INFO 2022-07-29 07:38:02,518 basehttp 5463 140324337882880 "GET /static/assets/plugins/datatables/css/dataTables.bootstrap.min.css HTTP/1.1" 200 4356
INFO 2022-07-29 07:38:02,518 basehttp 5463 140324321097472 "GET /static/assets/plugins/daterangepicker/daterangepicker.css HTTP/1.1" 200 8069
INFO 2022-07-29 07:38:02,519 basehttp 5463 140324346275584 "GET /static/assets/fonts/simple-line-icons/css/simple-line-icons.css HTTP/1.1" 200 10621
INFO 2022-07-29 07:38:02,520 basehttp 5463 140324355454720 "GET /static/assets/fonts/fontawesome/css/all.min.css HTTP/1.1" 200 74967
INFO 2022-07-29 07:38:02,520 basehttp 5463 140324312704768 "GET /static/assets/plugins/bootstrap/css/bootstrap.min.css HTTP/1.1" 200 162720
WARNING 2022-07-29 07:38:02,648 log 5463 140324312704768 Not Found: /favicon.ico
WARNING 2022-07-29 07:38:02,649 basehttp 5463 140324312704768 "GET /favicon.ico HTTP/1.1" 404 4663
INFO 2022-07-29 07:38:09,382 autoreload 5615 140092108527424 Watching for file changes with StatReloader
INFO 2022-07-29 07:38:10,675 basehttp 5615 140091966617344 "POST /e-register/ HTTP/1.1" 200 10511
INFO 2022-07-29 07:38:10,702 basehttp 5615 140091966617344 "GET /static/assets/main/css/fonts.css HTTP/1.1" 200 917
INFO 2022-07-29 07:38:10,709 basehttp 5615 140091932260096 "GET /static/assets/js/toggleFullScreen.js HTTP/1.1" 200 940
INFO 2022-07-29 07:38:10,710 basehttp 5615 140091940652800 "GET /static/assets/plugins/bootstrap/js/bootstrap.js HTTP/1.1" 200 148168
INFO 2022-07-29 07:38:10,711 basehttp 5615 140091949045504 "GET /static/assets/plugins/jquery/jquery.min.js HTTP/1.1" 200 72380
INFO 2022-07-29 07:38:10,711 basehttp 5615 140091923867392 "GET /static/assets/js/main.js HTTP/1.1" 200 8268
INFO 2022-07-29 07:38:10,712 basehttp 5615 140091957438208 "GET /static/assets/main/css/style.css HTTP/1.1" 200 88820
INFO 2022-07-29 07:38:10,725 basehttp 5615 140091957438208 "GET /static/assets/plugins/datatables/css/dataTables.bootstrap.min.css HTTP/1.1" 200 4356
INFO 2022-07-29 07:38:10,726 basehttp 5615 140091966617344 "GET /static/assets/fonts/simple-line-icons/css/simple-line-icons.css HTTP/1.1" 200 10621
INFO 2022-07-29 07:38:10,727 basehttp 5615 140091932260096 "GET /static/assets/plugins/daterangepicker/daterangepicker.css HTTP/1.1" 200 8069
INFO 2022-07-29 07:38:10,728 basehttp 5615 140091940652800 "GET /static/assets/fonts/fontawesome/css/all.min.css HTTP/1.1" 200 74967
INFO 2022-07-29 07:38:10,728 basehttp 5615 140091923867392 "GET /static/assets/plugins/bootstrap/css/bootstrap.min.css HTTP/1.1" 200 162720
WARNING 2022-07-29 07:38:10,813 log 5615 140091949045504 Not Found: /favicon.ico
WARNING 2022-07-29 07:38:10,813 basehttp 5615 140091949045504 "GET /favicon.ico HTTP/1.1" 404 4663
INFO 2022-07-29 07:38:11,529 basehttp 5615 140091949045504 "POST /e-register/ HTTP/1.1" 200 10511
INFO 2022-07-29 07:38:22,987 autoreload 5748 139759983351616 Watching for file changes with StatReloader
INFO 2022-07-29 07:38:26,061 basehttp 5748 139759841613568 "GET /e-register/ HTTP/1.1" 200 10422
INFO 2022-07-29 07:38:26,711 basehttp 5748 139759841613568 "GET /e-register/ HTTP/1.1" 200 10422
INFO 2022-07-29 07:38:26,952 basehttp 5748 139759841613568 "GET /e-register/ HTTP/1.1" 200 10422
INFO 2022-07-29 07:38:27,060 basehttp 5748 139759841613568 "GET /e-register/ HTTP/1.1" 200 10422
INFO 2022-07-29 07:38:27,222 basehttp 5748 139759841613568 "GET /e-register/ HTTP/1.1" 200 10422
INFO 2022-07-29 07:38:27,332 basehttp 5748 139759841613568 "GET /e-register/ HTTP/1.1" 200 10422
INFO 2022-07-29 07:38:27,454 basehttp 5748 139759841613568 "GET /e-register/ HTTP/1.1" 200 10422
INFO 2022-07-29 07:38:27,578 basehttp 5748 139759841613568 "GET /e-register/ HTTP/1.1" 200 10422
INFO 2022-07-29 07:38:33,694 basehttp 5748 139759841613568 "POST /e-register/ HTTP/1.1" 200 10508
INFO 2022-07-29 07:40:02,824 basehttp 5748 139759841613568 "POST /e-register/ HTTP/1.1" 200 6902
INFO 2022-07-29 07:40:10,456 basehttp 5748 139759841613568 "POST /e-register/ HTTP/1.1" 200 6903
INFO 2022-07-29 07:40:14,360 basehttp 5748 139759841613568 "GET /e-register/ HTTP/1.1" 200 6817
INFO 2022-07-29 07:40:17,429 basehttp 5748 139759841613568 "GET /t-login/ HTTP/1.1" 200 9485
INFO 2022-07-29 07:40:18,673 basehttp 5748 139759841613568 "GET /e-register/ HTTP/1.1" 200 6817
INFO 2022-07-29 07:40:19,192 basehttp 5748 139759841613568 "GET /e-register/ HTTP/1.1" 200 6817
INFO 2022-07-29 07:40:25,532 basehttp 5748 139759841613568 "POST /e-register/ HTTP/1.1" 200 6899
INFO 2022-07-29 07:41:34,493 autoreload 5748 139759983351616 /home/xbwafi/Desktop/django/AMS/accounts/views.py changed, reloading.
INFO 2022-07-29 07:41:34,808 autoreload 6079 139636658554688 Watching for file changes with StatReloader
INFO 2022-07-29 07:42:00,318 autoreload 6079 139636658554688 /home/xbwafi/Desktop/django/AMS/accounts/views.py changed, reloading.
INFO 2022-07-29 07:42:00,625 autoreload 6137 140593782134592 Watching for file changes with StatReloader
INFO 2022-07-29 07:42:15,034 autoreload 6137 140593782134592 /home/xbwafi/Desktop/django/AMS/accounts/views.py changed, reloading.
INFO 2022-07-29 07:42:15,377 autoreload 6190 140076502202176 Watching for file changes with StatReloader
INFO 2022-07-29 07:42:45,998 basehttp 6190 140076427585280 "POST /e-register/ HTTP/1.1" 200 6900
INFO 2022-07-29 07:42:48,328 basehttp 6190 140076427585280 "GET /e-register/ HTTP/1.1" 200 6818
INFO 2022-07-29 07:42:49,609 basehttp 6190 140076427585280 "GET /t-login/ HTTP/1.1" 200 9485
INFO 2022-07-29 07:42:50,460 basehttp 6190 140076427585280 "GET /e-register/ HTTP/1.1" 200 6818
INFO 2022-07-29 07:42:50,878 basehttp 6190 140076427585280 "GET /e-register/ HTTP/1.1" 200 6818
INFO 2022-07-29 07:42:50,985 basehttp 6190 140076427585280 "GET /e-register/ HTTP/1.1" 200 6818
INFO 2022-07-29 07:42:54,818 basehttp 6190 140076427585280 "POST /e-register/ HTTP/1.1" 200 6902
INFO 2022-07-29 07:43:28,652 autoreload 6190 140076502202176 /home/xbwafi/Desktop/django/AMS/accounts/views.py changed, reloading.
INFO 2022-07-29 07:43:29,021 autoreload 6357 139681389995840 Watching for file changes with StatReloader
INFO 2022-07-29 07:43:38,365 autoreload 6357 139681389995840 /home/xbwafi/Desktop/django/AMS/accounts/views.py changed, reloading.
INFO 2022-07-29 07:43:38,673 autoreload 6411 140093038167872 Watching for file changes with StatReloader
INFO 2022-07-29 07:44:04,594 basehttp 6411 140092896421632 "GET /e-register/ HTTP/1.1" 200 6818
INFO 2022-07-29 07:44:06,113 basehttp 6411 140092896421632 "GET /t-login/ HTTP/1.1" 200 9485
INFO 2022-07-29 07:44:11,091 basehttp 6411 140092896421632 "GET /t-login/ HTTP/1.1" 200 9485
INFO 2022-07-29 07:44:12,127 basehttp 6411 140092896421632 "GET /e-register/ HTTP/1.1" 200 6818
INFO 2022-07-29 07:44:12,303 basehttp 6411 140092896421632 "GET /e-register/ HTTP/1.1" 200 6818
INFO 2022-07-29 07:44:12,409 basehttp 6411 140092896421632 "GET /e-register/ HTTP/1.1" 200 6818
INFO 2022-07-29 07:44:12,529 basehttp 6411 140092896421632 "GET /e-register/ HTTP/1.1" 200 6818
INFO 2022-07-29 07:44:12,656 basehttp 6411 140092896421632 "GET /e-register/ HTTP/1.1" 200 6818
INFO 2022-07-29 07:44:12,781 basehttp 6411 140092896421632 "GET /e-register/ HTTP/1.1" 200 6818
INFO 2022-07-29 07:44:16,156 basehttp 6411 140092896421632 "GET /static/assets/plugins/bootstrap/js/bootstrap.js.map HTTP/1.1" 200 289522
INFO 2022-07-29 07:44:16,184 basehttp 6411 140092887242496 "GET /static/assets/main/css/style.css.map HTTP/1.1" 200 43570
INFO 2022-07-29 07:44:16,185 basehttp 6411 140092896421632 "GET /static/assets/plugins/bootstrap/css/bootstrap.min.css.map HTTP/1.1" 200 449111
INFO 2022-07-29 07:44:18,955 basehttp 6411 140092896421632 "GET /e-register/ HTTP/1.1" 200 6818
INFO 2022-07-29 07:44:18,971 basehttp 6411 140092896421632 "GET /static/assets/main/css/fonts.css HTTP/1.1" 200 917
INFO 2022-07-29 07:44:18,975 basehttp 6411 140092853671680 "GET /static/assets/js/main.js HTTP/1.1" 200 8268
INFO 2022-07-29 07:44:18,975 basehttp 6411 140092862064384 "GET /static/assets/js/toggleFullScreen.js HTTP/1.1" 200 940
INFO 2022-07-29 07:44:18,976 basehttp 6411 140092887242496 "GET /static/assets/main/css/style.css HTTP/1.1" 200 88820
INFO 2022-07-29 07:44:18,977 basehttp 6411 140092870457088 "GET /static/assets/plugins/bootstrap/js/bootstrap.js HTTP/1.1" 200 148168
INFO 2022-07-29 07:44:18,978 basehttp 6411 140092878849792 "GET /static/assets/plugins/jquery/jquery.min.js HTTP/1.1" 200 72380
INFO 2022-07-29 07:44:19,013 basehttp 6411 140092862064384 "GET /static/assets/plugins/daterangepicker/daterangepicker.css HTTP/1.1" 200 8069
INFO 2022-07-29 07:44:19,013 basehttp 6411 140092853671680 "GET /static/assets/plugins/bootstrap/css/bootstrap.min.css HTTP/1.1" 200 162720
INFO 2022-07-29 07:44:19,016 basehttp 6411 140092896421632 "GET /static/assets/fonts/simple-line-icons/css/simple-line-icons.css HTTP/1.1" 200 10621
INFO 2022-07-29 07:44:19,017 basehttp 6411 140092870457088 "GET /static/assets/plugins/datatables/css/dataTables.bootstrap.min.css HTTP/1.1" 200 4356
INFO 2022-07-29 07:44:19,017 basehttp 6411 140092887242496 "GET /static/assets/fonts/fontawesome/css/all.min.css HTTP/1.1" 200 74967
INFO 2022-07-29 07:44:19,059 basehttp 6411 140092887242496 "GET /static/assets/plugins/bootstrap/css/bootstrap.min.css.map HTTP/1.1" 200 449111
INFO 2022-07-29 07:44:19,089 basehttp 6411 140092887242496 "GET /static/assets/plugins/bootstrap/js/bootstrap.js.map HTTP/1.1" 200 289522
INFO 2022-07-29 07:44:19,094 basehttp 6411 140092896421632 "GET /static/assets/main/css/style.css.map HTTP/1.1" 200 43570
WARNING 2022-07-29 07:44:19,261 log 6411 140092887242496 Not Found: /favicon.ico
WARNING 2022-07-29 07:44:19,261 basehttp 6411 140092887242496 "GET /favicon.ico HTTP/1.1" 404 4663
INFO 2022-07-29 07:44:26,535 basehttp 6411 140092887242496 "POST /e-register/ HTTP/1.1" 200 6910
INFO 2022-07-29 07:44:26,652 basehttp 6411 140092887242496 "GET /static/assets/plugins/bootstrap/css/bootstrap.min.css.map HTTP/1.1" 200 449111
INFO 2022-07-29 07:44:26,654 basehttp 6411 140092896421632 "GET /static/assets/main/css/style.css.map HTTP/1.1" 200 43570
INFO 2022-07-29 07:44:26,685 basehttp 6411 140092896421632 "GET /static/assets/plugins/bootstrap/js/bootstrap.js.map HTTP/1.1" 200 289522
INFO 2022-07-29 07:45:14,190 autoreload 6411 140093038167872 /home/xbwafi/Desktop/django/AMS/accounts/views.py changed, reloading.
INFO 2022-07-29 07:45:14,533 autoreload 6623 139936709592896 Watching for file changes with StatReloader
INFO 2022-07-29 07:45:18,559 basehttp 6623 139936634976000 "GET /e-register/ HTTP/1.1" 200 6820
INFO 2022-07-29 07:45:18,653 basehttp 6623 139936634976000 "GET /static/assets/main/css/style.css.map HTTP/1.1" 200 43570
INFO 2022-07-29 07:45:18,654 basehttp 6623 139936626059008 "GET /static/assets/plugins/bootstrap/css/bootstrap.min.css.map HTTP/1.1" 200 449111
INFO 2022-07-29 07:45:18,677 basehttp 6623 139936626059008 "GET /static/assets/plugins/bootstrap/js/bootstrap.js.map HTTP/1.1" 200 289522
INFO 2022-07-29 07:45:19,274 basehttp 6623 139936634976000 "GET /e-register/ HTTP/1.1" 200 6820
INFO 2022-07-29 07:45:19,365 basehttp 6623 139936626059008 "GET /static/assets/main/css/style.css.map HTTP/1.1" 200 43570
INFO 2022-07-29 07:45:19,366 basehttp 6623 139936634976000 "GET /static/assets/plugins/bootstrap/css/bootstrap.min.css.map HTTP/1.1" 200 449111
INFO 2022-07-29 07:45:19,390 basehttp 6623 139936634976000 "GET /static/assets/plugins/bootstrap/js/bootstrap.js.map HTTP/1.1" 200 289522
INFO 2022-07-29 07:45:22,370 basehttp 6623 139936634976000 "GET /e-register/ HTTP/1.1" 200 6820
INFO 2022-07-29 07:45:22,463 basehttp 6623 139936634976000 "GET /static/assets/main/css/style.css.map HTTP/1.1" 200 43570
INFO 2022-07-29 07:45:22,464 basehttp 6623 139936626059008 "GET /static/assets/plugins/bootstrap/css/bootstrap.min.css.map HTTP/1.1" 200 449111
INFO 2022-07-29 07:45:22,485 basehttp 6623 139936626059008 "GET /static/assets/plugins/bootstrap/js/bootstrap.js.map HTTP/1.1" 200 289522
INFO 2022-07-29 07:45:27,409 basehttp 6623 139936634976000 "POST /e-register/ HTTP/1.1" 200 6903
INFO 2022-07-29 07:45:27,508 basehttp 6623 139936634976000 "GET /static/assets/main/css/style.css.map HTTP/1.1" 200 43570
INFO 2022-07-29 07:45:27,509 basehttp 6623 139936626059008 "GET /static/assets/plugins/bootstrap/css/bootstrap.min.css.map HTTP/1.1" 200 449111
INFO 2022-07-29 07:45:27,527 basehttp 6623 139936626059008 "GET /static/assets/plugins/bootstrap/js/bootstrap.js.map HTTP/1.1" 200 289522
INFO 2022-07-29 07:45:48,261 autoreload 6623 139936709592896 /home/xbwafi/Desktop/django/AMS/accounts/views.py changed, reloading.
INFO 2022-07-29 07:45:48,572 autoreload 6724 140210122291008 Watching for file changes with StatReloader
INFO 2022-07-29 07:45:51,636 basehttp 6724 140210047674112 "GET /e-register/ HTTP/1.1" 200 6820
INFO 2022-07-29 07:45:51,724 basehttp 6724 140210038757120 "GET /static/assets/main/css/style.css.map HTTP/1.1" 200 43570
INFO 2022-07-29 07:45:51,725 basehttp 6724 140210047674112 "GET /static/assets/plugins/bootstrap/css/bootstrap.min.css.map HTTP/1.1" 200 449111
INFO 2022-07-29 07:45:51,746 basehttp 6724 140210047674112 "GET /static/assets/plugins/bootstrap/js/bootstrap.js.map HTTP/1.1" 200 289522
INFO 2022-07-29 07:45:52,572 basehttp 6724 140210047674112 "GET /e-register/ HTTP/1.1" 200 6820
INFO 2022-07-29 07:45:52,667 basehttp 6724 140210038757120 "GET /static/assets/main/css/style.css.map HTTP/1.1" 200 43570
INFO 2022-07-29 07:45:52,668 basehttp 6724 140210047674112 "GET /static/assets/plugins/bootstrap/css/bootstrap.min.css.map HTTP/1.1" 200 449111
INFO 2022-07-29 07:45:52,689 basehttp 6724 140210047674112 "GET /static/assets/plugins/bootstrap/js/bootstrap.js.map HTTP/1.1" 200 289522
INFO 2022-07-29 07:45:58,779 basehttp 6724 140210038757120 "POST /e-register/ HTTP/1.1" 200 6905
INFO 2022-07-29 07:45:58,898 basehttp 6724 140210038757120 "GET /static/assets/main/css/style.css.map HTTP/1.1" 200 43570
INFO 2022-07-29 07:45:58,899 basehttp 6724 140210047674112 "GET /static/assets/plugins/bootstrap/css/bootstrap.min.css.map HTTP/1.1" 200 449111
INFO 2022-07-29 07:45:58,918 basehttp 6724 140210047674112 "GET /static/assets/plugins/bootstrap/js/bootstrap.js.map HTTP/1.1" 200 289522
INFO 2022-07-29 07:46:48,621 basehttp 6724 140210047674112 "GET /t-register/ HTTP/1.1" 200 6336
INFO 2022-07-29 07:46:48,726 basehttp 6724 140210038757120 "GET /static/assets/main/css/style.css.map HTTP/1.1" 200 43570
INFO 2022-07-29 07:46:48,727 basehttp 6724 140210047674112 "GET /static/assets/plugins/bootstrap/css/bootstrap.min.css.map HTTP/1.1" 200 449111
INFO 2022-07-29 07:46:48,748 basehttp 6724 140210047674112 "GET /static/assets/plugins/bootstrap/js/bootstrap.js.map HTTP/1.1" 200 289522
INFO 2022-07-29 07:46:54,319 basehttp 6724 140210047674112 "POST /t-register/ HTTP/1.1" 302 0
INFO 2022-07-29 07:46:54,332 basehttp 6724 140210047674112 "GET /t-login/ HTTP/1.1" 200 9742
INFO 2022-07-29 07:46:54,351 basehttp 6724 140210047674112 "GET /static/assets/js/swal.js HTTP/1.1" 200 68810
INFO 2022-07-29 07:46:54,446 basehttp 6724 140210047674112 "GET /static/assets/plugins/bootstrap/css/bootstrap.min.css.map HTTP/1.1" 200 449111
INFO 2022-07-29 07:46:54,450 basehttp 6724 140210038757120 "GET /static/assets/main/css/style.css.map HTTP/1.1" 200 43570
INFO 2022-07-29 07:46:54,501 basehttp 6724 140210038757120 "GET /static/assets/plugins/bootstrap/js/bootstrap.js.map HTTP/1.1" 200 289522
INFO 2022-07-29 07:48:33,078 autoreload 6724 140210122291008 /home/xbwafi/Desktop/django/AMS/accounts/views.py changed, reloading.
INFO 2022-07-29 07:48:33,408 autoreload 7225 140440061986624 Watching for file changes with StatReloader
INFO 2022-07-29 07:48:48,907 basehttp 7225 140439920219904 "GET /t-register/ HTTP/1.1" 200 6336
INFO 2022-07-29 07:48:49,002 basehttp 7225 140439920219904 "GET /static/assets/plugins/bootstrap/css/bootstrap.min.css.map HTTP/1.1" 200 449111
INFO 2022-07-29 07:48:49,005 basehttp 7225 140439911302912 "GET /static/assets/main/css/style.css.map HTTP/1.1" 200 43570
INFO 2022-07-29 07:48:49,036 basehttp 7225 140439911302912 "GET /static/assets/plugins/bootstrap/js/bootstrap.js.map HTTP/1.1" 200 289522
INFO 2022-07-29 07:48:49,890 basehttp 7225 140439911302912 "GET /t-register/ HTTP/1.1" 200 6336
INFO 2022-07-29 07:48:49,980 basehttp 7225 140439920219904 "GET /static/assets/main/css/style.css.map HTTP/1.1" 200 43570
INFO 2022-07-29 07:48:49,980 basehttp 7225 140439911302912 "GET /static/assets/plugins/bootstrap/css/bootstrap.min.css.map HTTP/1.1" 200 449111
INFO 2022-07-29 07:48:50,012 basehttp 7225 140439911302912 "GET /static/assets/plugins/bootstrap/js/bootstrap.js.map HTTP/1.1" 200 289522
INFO 2022-07-29 07:48:57,983 basehttp 7225 140439911302912 "POST /t-register/ HTTP/1.1" 302 0
INFO 2022-07-29 07:48:57,996 basehttp 7225 140439911302912 "GET /t-login/ HTTP/1.1" 200 9742
INFO 2022-07-29 07:48:58,127 basehttp 7225 140439911302912 "GET /static/assets/main/css/style.css.map HTTP/1.1" 200 43570
INFO 2022-07-29 07:48:58,128 basehttp 7225 140439920219904 "GET /static/assets/plugins/bootstrap/css/bootstrap.min.css.map HTTP/1.1" 200 449111
INFO 2022-07-29 07:48:58,164 basehttp 7225 140439920219904 "GET /static/assets/plugins/bootstrap/js/bootstrap.js.map HTTP/1.1" 200 289522
INFO 2022-07-29 07:49:33,361 basehttp 7225 140439911302912 "GET /t-register/ HTTP/1.1" 200 6336
INFO 2022-07-29 07:49:33,451 basehttp 7225 140439911302912 "GET /static/assets/main/css/style.css.map HTTP/1.1" 200 43570
INFO 2022-07-29 07:49:33,452 basehttp 7225 140439920219904 "GET /static/assets/plugins/bootstrap/css/bootstrap.min.css.map HTTP/1.1" 200 449111
INFO 2022-07-29 07:49:33,472 basehttp 7225 140439920219904 "GET /static/assets/plugins/bootstrap/js/bootstrap.js.map HTTP/1.1" 200 289522
INFO 2022-07-29 07:49:34,188 basehttp 7225 140439911302912 "GET /t-register/ HTTP/1.1" 200 6336
INFO 2022-07-29 07:49:34,276 basehttp 7225 140439920219904 "GET /static/assets/main/css/style.css.map HTTP/1.1" 200 43570
INFO 2022-07-29 07:49:34,277 basehttp 7225 140439911302912 "GET /static/assets/plugins/bootstrap/css/bootstrap.min.css.map HTTP/1.1" 200 449111
INFO 2022-07-29 07:49:34,299 basehttp 7225 140439911302912 "GET /static/assets/plugins/bootstrap/js/bootstrap.js.map HTTP/1.1" 200 289522
INFO 2022-07-29 07:51:54,038 basehttp 7225 140439911302912 "GET /e-register/ HTTP/1.1" 200 7036
INFO 2022-07-29 07:51:55,372 basehttp 7225 140439911302912 "GET /e-register/ HTTP/1.1" 200 7036
INFO 2022-07-29 07:52:07,917 basehttp 7225 140439911302912 "POST /t-register/ HTTP/1.1" 200 6424
INFO 2022-07-29 07:52:23,178 basehttp 7225 140439911302912 "GET /e-register/ HTTP/1.1" 200 7036
INFO 2022-07-29 07:52:56,446 basehttp 7225 140439911302912 "GET /e-register/ HTTP/1.1" 200 7066
INFO 2022-07-29 07:52:57,048 basehttp 7225 140439911302912 "GET /e-register/ HTTP/1.1" 200 7066
INFO 2022-07-29 07:52:57,165 basehttp 7225 140439911302912 "GET /e-register/ HTTP/1.1" 200 7066
INFO 2022-07-29 07:52:57,405 basehttp 7225 140439911302912 "GET /e-register/ HTTP/1.1" 200 7066
INFO 2022-07-29 07:52:57,573 basehttp 7225 140439911302912 "GET /e-register/ HTTP/1.1" 200 7066
INFO 2022-07-29 07:53:40,749 autoreload 7225 140440061986624 /home/xbwafi/Desktop/django/AMS/accounts/views.py changed, reloading.
INFO 2022-07-29 07:53:41,109 autoreload 7544 140310619232064 Watching for file changes with StatReloader
INFO 2022-07-29 07:53:43,387 basehttp 7544 140310474651392 "GET /e-register/ HTTP/1.1" 200 7066
INFO 2022-07-29 07:53:49,807 basehttp 7544 140310474651392 "POST /e-register/ HTTP/1.1" 200 7149
INFO 2022-07-29 07:54:55,336 basehttp 7544 140310474651392 "GET /e-register/ HTTP/1.1" 200 6820
INFO 2022-07-29 07:54:56,559 basehttp 7544 140310474651392 "GET /e-register/ HTTP/1.1" 200 6820
INFO 2022-07-29 07:54:57,613 basehttp 7544 140310474651392 "GET /e-register/ HTTP/1.1" 200 6820
INFO 2022-07-29 07:55:01,883 basehttp 7544 140310474651392 "POST /e-register/ HTTP/1.1" 200 6910
INFO 2022-07-29 07:55:35,798 autoreload 7544 140310619232064 /home/xbwafi/Desktop/django/AMS/accounts/views.py changed, reloading.
INFO 2022-07-29 07:55:36,110 autoreload 7732 139867390818112 Watching for file changes with StatReloader
INFO 2022-07-29 07:56:55,143 autoreload 7732 139867390818112 /home/xbwafi/Desktop/django/AMS/accounts/views.py changed, reloading.
INFO 2022-07-29 07:56:55,514 autoreload 7801 140452377241408 Watching for file changes with StatReloader
INFO 2022-07-29 07:56:58,983 basehttp 7801 140452302624512 "GET /e-register/ HTTP/1.1" 200 6820
INFO 2022-07-29 07:56:59,600 basehttp 7801 140452302624512 "GET /e-register/ HTTP/1.1" 200 6820
INFO 2022-07-29 07:57:02,123 basehttp 7801 140452302624512 "GET /e-register/ HTTP/1.1" 200 6820
INFO 2022-07-29 07:57:03,901 basehttp 7801 140452302624512 "GET /e-register/ HTTP/1.1" 200 6820
INFO 2022-07-29 07:57:04,113 basehttp 7801 140452302624512 "GET /e-register/ HTTP/1.1" 200 6820
INFO 2022-07-29 07:57:04,385 basehttp 7801 140452302624512 "GET /e-register/ HTTP/1.1" 200 6820
INFO 2022-07-29 07:57:04,512 basehttp 7801 140452302624512 "GET /e-register/ HTTP/1.1" 200 6820
INFO 2022-07-29 07:57:04,671 basehttp 7801 140452302624512 "GET /e-register/ HTTP/1.1" 200 6820
INFO 2022-07-29 07:57:04,792 basehttp 7801 140452302624512 "GET /e-register/ HTTP/1.1" 200 6820
INFO 2022-07-29 07:57:04,936 basehttp 7801 140452302624512 "GET /e-register/ HTTP/1.1" 200 6820
INFO 2022-07-29 07:57:08,982 basehttp 7801 140452302624512 "POST /e-register/ HTTP/1.1" 200 7160
INFO 2022-07-29 07:57:45,381 autoreload 7801 140452377241408 /home/xbwafi/Desktop/django/AMS/accounts/views.py changed, reloading.
INFO 2022-07-29 07:57:45,698 autoreload 8018 139779199883072 Watching for file changes with StatReloader
INFO 2022-07-29 07:58:57,445 basehttp 8018 139779125266176 "GET /e-register/ HTTP/1.1" 200 7163
INFO 2022-07-29 07:58:57,901 basehttp 8018 139779125266176 "GET /e-register/ HTTP/1.1" 200 7163
INFO 2022-07-29 07:59:10,222 basehttp 8018 139779125266176 "GET /e-register/ HTTP/1.1" 200 7162
INFO 2022-07-29 07:59:16,500 basehttp 8018 139779125266176 "POST /e-register/ HTTP/1.1" 302 0
INFO 2022-07-29 07:59:16,513 basehttp 8018 139779125266176 "GET /e-login/ HTTP/1.1" 200 9746
INFO 2022-07-29 07:59:49,522 autoreload 8018 139779199883072 /home/xbwafi/Desktop/django/AMS/accounts/views.py changed, reloading.
INFO 2022-07-29 07:59:49,842 autoreload 8195 140667025266496 Watching for file changes with StatReloader
INFO 2022-07-29 07:59:53,355 basehttp 8195 140666883532544 "GET /e-register/ HTTP/1.1" 200 7162
INFO 2022-07-29 07:59:55,792 basehttp 8195 140666883532544 "GET /t-login/ HTTP/1.1" 200 9485
INFO 2022-07-29 07:59:58,851 basehttp 8195 140666883532544 "GET /t-register/ HTTP/1.1" 200 6336
INFO 2022-07-29 08:00:10,763 basehttp 8195 140666883532544 "GET /e-register/ HTTP/1.1" 200 7162
ERROR 2022-07-29 08:00:16,578 log 8195 140666883532544 Internal Server Error: /e-register/
Traceback (most recent call last):
File "/home/xbwafi/.local/lib/python3.8/site-packages/django/core/handlers/exception.py", line 55, in inner
response = get_response(request)
File "/home/xbwafi/.local/lib/python3.8/site-packages/django/core/handlers/base.py", line 197, in _get_response
response = wrapped_callback(request, *callback_args, **callback_kwargs)
File "/home/xbwafi/Desktop/django/AMS/accounts/views.py", line 107, in e_register
user.save()
File "/home/xbwafi/.local/lib/python3.8/site-packages/django/contrib/auth/base_user.py", line 68, in save
super().save(*args, **kwargs)
File "/home/xbwafi/.local/lib/python3.8/site-packages/django/db/models/base.py", line 806, in save
self.save_base(
File "/home/xbwafi/.local/lib/python3.8/site-packages/django/db/models/base.py", line 857, in save_base
updated = self._save_table(
File "/home/xbwafi/.local/lib/python3.8/site-packages/django/db/models/base.py", line 970, in _save_table
updated = self._do_update(
File "/home/xbwafi/.local/lib/python3.8/site-packages/django/db/models/base.py", line 1034, in _do_update
return filtered._update(values) > 0
File "/home/xbwafi/.local/lib/python3.8/site-packages/django/db/models/query.py", line 885, in _update
return query.get_compiler(self.db).execute_sql(CURSOR)
File "/home/xbwafi/.local/lib/python3.8/site-packages/django/db/models/sql/compiler.py", line 1783, in execute_sql
cursor = super().execute_sql(result_type)
File "/home/xbwafi/.local/lib/python3.8/site-packages/django/db/models/sql/compiler.py", line 1348, in execute_sql
sql, params = self.as_sql()
File "/home/xbwafi/.local/lib/python3.8/site-packages/django/db/backends/mysql/compiler.py", line 50, in as_sql
update_query, update_params = super().as_sql()
File "/home/xbwafi/.local/lib/python3.8/site-packages/django/db/models/sql/compiler.py", line 1749, in as_sql
val = field.get_db_prep_save(val, connection=self.connection)
File "/home/xbwafi/.local/lib/python3.8/site-packages/django/db/models/fields/related.py", line 1126, in get_db_prep_save
return self.target_field.get_db_prep_save(value, connection=connection)
File "/home/xbwafi/.local/lib/python3.8/site-packages/django/db/models/fields/__init__.py", line 910, in get_db_prep_save
return self.get_db_prep_value(value, connection=connection, prepared=False)
File "/home/xbwafi/.local/lib/python3.8/site-packages/django/db/models/fields/__init__.py", line 2669, in get_db_prep_value
value = connection.ops.validate_autopk_value(value)
File "/home/xbwafi/.local/lib/python3.8/site-packages/django/db/backends/mysql/operations.py", line 249, in validate_autopk_value
raise ValueError(
ValueError: The database backend does not accept 0 as a value for AutoField.
ERROR 2022-07-29 08:00:16,580 basehttp 8195 140666883532544 "POST /e-register/ HTTP/1.1" 500 138328
INFO 2022-07-29 08:00:31,708 autoreload 8195 140667025266496 /home/xbwafi/Desktop/django/AMS/accounts/views.py changed, reloading.
INFO 2022-07-29 08:00:32,033 autoreload 8272 139644929603392 Watching for file changes with StatReloader
INFO 2022-07-29 08:00:32,899 basehttp 8272 139644855510784 "POST /e-register/ HTTP/1.1" 200 7734
INFO 2022-07-29 08:00:38,779 basehttp 8272 139644855510784 "GET /e-register/ HTTP/1.1" 200 7162
INFO 2022-07-29 08:00:52,083 basehttp 8272 139644855510784 "GET /e-register/ HTTP/1.1" 200 7162
ERROR 2022-07-29 08:01:07,680 log 8272 139644855510784 Internal Server Error: /e-register/
Traceback (most recent call last):
File "/home/xbwafi/.local/lib/python3.8/site-packages/django/db/models/fields/__init__.py", line 1988, in get_prep_value
return int(value)
ValueError: invalid literal for int() with base 10: 'null'
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/home/xbwafi/.local/lib/python3.8/site-packages/django/core/handlers/exception.py", line 55, in inner
response = get_response(request)
File "/home/xbwafi/.local/lib/python3.8/site-packages/django/core/handlers/base.py", line 197, in _get_response
response = wrapped_callback(request, *callback_args, **callback_kwargs)
File "/home/xbwafi/Desktop/django/AMS/accounts/views.py", line 107, in e_register
user.save()
File "/home/xbwafi/.local/lib/python3.8/site-packages/django/contrib/auth/base_user.py", line 68, in save
super().save(*args, **kwargs)
File "/home/xbwafi/.local/lib/python3.8/site-packages/django/db/models/base.py", line 806, in save
self.save_base(
File "/home/xbwafi/.local/lib/python3.8/site-packages/django/db/models/base.py", line 857, in save_base
updated = self._save_table(
File "/home/xbwafi/.local/lib/python3.8/site-packages/django/db/models/base.py", line 970, in _save_table
updated = self._do_update(
File "/home/xbwafi/.local/lib/python3.8/site-packages/django/db/models/base.py", line 1034, in _do_update
return filtered._update(values) > 0
File "/home/xbwafi/.local/lib/python3.8/site-packages/django/db/models/query.py", line 885, in _update
return query.get_compiler(self.db).execute_sql(CURSOR)
File "/home/xbwafi/.local/lib/python3.8/site-packages/django/db/models/sql/compiler.py", line 1783, in execute_sql
cursor = super().execute_sql(result_type)
File "/home/xbwafi/.local/lib/python3.8/site-packages/django/db/models/sql/compiler.py", line 1348, in execute_sql
sql, params = self.as_sql()
File "/home/xbwafi/.local/lib/python3.8/site-packages/django/db/backends/mysql/compiler.py", line 50, in as_sql
update_query, update_params = super().as_sql()
File "/home/xbwafi/.local/lib/python3.8/site-packages/django/db/models/sql/compiler.py", line 1749, in as_sql
val = field.get_db_prep_save(val, connection=self.connection)
File "/home/xbwafi/.local/lib/python3.8/site-packages/django/db/models/fields/related.py", line 1126, in get_db_prep_save
return self.target_field.get_db_prep_save(value, connection=connection)
File "/home/xbwafi/.local/lib/python3.8/site-packages/django/db/models/fields/__init__.py", line 910, in get_db_prep_save
return self.get_db_prep_value(value, connection=connection, prepared=False)
File "/home/xbwafi/.local/lib/python3.8/site-packages/django/db/models/fields/__init__.py", line 2668, in get_db_prep_value
value = self.get_prep_value(value)
File "/home/xbwafi/.local/lib/python3.8/site-packages/django/db/models/fields/__init__.py", line 1990, in get_prep_value
raise e.__class__(
ValueError: Field 'id' expected a number but got 'null'.
ERROR 2022-07-29 08:01:07,682 basehttp 8272 139644855510784 "POST /e-register/ HTTP/1.1" 500 142896
INFO 2022-07-29 08:01:46,355 autoreload 8272 139644929603392 /home/xbwafi/Desktop/django/AMS/accounts/views.py changed, reloading.
INFO 2022-07-29 08:01:46,667 autoreload 8372 139906363647808 Watching for file changes with StatReloader
INFO 2022-07-29 08:01:55,915 basehttp 8372 139906289030912 "GET /e-register/ HTTP/1.1" 200 7162
INFO 2022-07-29 08:01:56,727 basehttp 8372 139906289030912 "GET /e-register/ HTTP/1.1" 200 7162
INFO 2022-07-29 08:01:56,865 basehttp 8372 139906289030912 "GET /e-register/ HTTP/1.1" 200 7162
INFO 2022-07-29 08:01:56,990 basehttp 8372 139906289030912 "GET /e-register/ HTTP/1.1" 200 7162
INFO 2022-07-29 08:01:57,118 basehttp 8372 139906289030912 "GET /e-register/ HTTP/1.1" 200 7162
INFO 2022-07-29 08:01:57,240 basehttp 8372 139906289030912 "GET /e-register/ HTTP/1.1" 200 7162
INFO 2022-07-29 08:01:57,350 basehttp 8372 139906289030912 "GET /e-register/ HTTP/1.1" 200 7162
INFO 2022-07-29 08:01:57,620 basehttp 8372 139906289030912 "GET /e-register/ HTTP/1.1" 200 7162
ERROR 2022-07-29 08:02:01,946 log 8372 139906289030912 Internal Server Error: /e-register/
Traceback (most recent call last):
File "/home/xbwafi/.local/lib/python3.8/site-packages/django/db/backends/utils.py", line 89, in _execute
return self.cursor.execute(sql, params)
File "/home/xbwafi/.local/lib/python3.8/site-packages/django/db/backends/mysql/base.py", line 75, in execute
return self.cursor.execute(query, args)
File "/home/xbwafi/.local/lib/python3.8/site-packages/pymysql/cursors.py", line 148, in execute
result = self._query(query)
File "/home/xbwafi/.local/lib/python3.8/site-packages/pymysql/cursors.py", line 310, in _query
conn.query(q)
File "/home/xbwafi/.local/lib/python3.8/site-packages/pymysql/connections.py", line 548, in query
self._affected_rows = self._read_query_result(unbuffered=unbuffered)
File "/home/xbwafi/.local/lib/python3.8/site-packages/pymysql/connections.py", line 775, in _read_query_result
result.read()
File "/home/xbwafi/.local/lib/python3.8/site-packages/pymysql/connections.py", line 1156, in read
first_packet = self.connection._read_packet()
File "/home/xbwafi/.local/lib/python3.8/site-packages/pymysql/connections.py", line 725, in _read_packet
packet.raise_for_error()
File "/home/xbwafi/.local/lib/python3.8/site-packages/pymysql/protocol.py", line 221, in raise_for_error
err.raise_mysql_exception(self._data)
File "/home/xbwafi/.local/lib/python3.8/site-packages/pymysql/err.py", line 143, in raise_mysql_exception
raise errorclass(errno, errval)
pymysql.err.IntegrityError: (1452, 'Cannot add or update a child row: a foreign key constraint fails (`ams`.`accounts_account`, CONSTRAINT `accounts_account_tenant_id_a28a6b83_fk_home_tenant_id` FOREIGN KEY (`tenant_id`) REFERENCES `home_tenant` (`id`))')
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/home/xbwafi/.local/lib/python3.8/site-packages/django/core/handlers/exception.py", line 55, in inner
response = get_response(request)
File "/home/xbwafi/.local/lib/python3.8/site-packages/django/core/handlers/base.py", line 197, in _get_response
response = wrapped_callback(request, *callback_args, **callback_kwargs)
File "/home/xbwafi/Desktop/django/AMS/accounts/views.py", line 107, in e_register
user.save()
File "/home/xbwafi/.local/lib/python3.8/site-packages/django/contrib/auth/base_user.py", line 68, in save
super().save(*args, **kwargs)
File "/home/xbwafi/.local/lib/python3.8/site-packages/django/db/models/base.py", line 806, in save
self.save_base(
File "/home/xbwafi/.local/lib/python3.8/site-packages/django/db/models/base.py", line 857, in save_base
updated = self._save_table(
File "/home/xbwafi/.local/lib/python3.8/site-packages/django/db/models/base.py", line 970, in _save_table
updated = self._do_update(
File "/home/xbwafi/.local/lib/python3.8/site-packages/django/db/models/base.py", line 1034, in _do_update
return filtered._update(values) > 0
File "/home/xbwafi/.local/lib/python3.8/site-packages/django/db/models/query.py", line 885, in _update
return query.get_compiler(self.db).execute_sql(CURSOR)
File "/home/xbwafi/.local/lib/python3.8/site-packages/django/db/models/sql/compiler.py", line 1783, in execute_sql
cursor = super().execute_sql(result_type)
File "/home/xbwafi/.local/lib/python3.8/site-packages/django/db/models/sql/compiler.py", line 1361, in execute_sql
cursor.execute(sql, params)
File "/home/xbwafi/.local/lib/python3.8/site-packages/django/db/backends/utils.py", line 103, in execute
return super().execute(sql, params)
File "/home/xbwafi/.local/lib/python3.8/site-packages/django/db/backends/utils.py", line 67, in execute
return self._execute_with_wrappers(
File "/home/xbwafi/.local/lib/python3.8/site-packages/django/db/backends/utils.py", line 80, in _execute_with_wrappers
return executor(sql, params, many, context)
File "/home/xbwafi/.local/lib/python3.8/site-packages/django/db/backends/utils.py", line 89, in _execute
return self.cursor.execute(sql, params)
File "/home/xbwafi/.local/lib/python3.8/site-packages/django/db/utils.py", line 91, in __exit__
raise dj_exc_value.with_traceback(traceback) from exc_value
File "/home/xbwafi/.local/lib/python3.8/site-packages/django/db/backends/utils.py", line 89, in _execute
return self.cursor.execute(sql, params)
File "/home/xbwafi/.local/lib/python3.8/site-packages/django/db/backends/mysql/base.py", line 75, in execute
return self.cursor.execute(query, args)
File "/home/xbwafi/.local/lib/python3.8/site-packages/pymysql/cursors.py", line 148, in execute
result = self._query(query)
File "/home/xbwafi/.local/lib/python3.8/site-packages/pymysql/cursors.py", line 310, in _query
conn.query(q)
File "/home/xbwafi/.local/lib/python3.8/site-packages/pymysql/connections.py", line 548, in query
self._affected_rows = self._read_query_result(unbuffered=unbuffered)
File "/home/xbwafi/.local/lib/python3.8/site-packages/pymysql/connections.py", line 775, in _read_query_result
result.read()
File "/home/xbwafi/.local/lib/python3.8/site-packages/pymysql/connections.py", line 1156, in read
first_packet = self.connection._read_packet()
File "/home/xbwafi/.local/lib/python3.8/site-packages/pymysql/connections.py", line 725, in _read_packet
packet.raise_for_error()
File "/home/xbwafi/.local/lib/python3.8/site-packages/pymysql/protocol.py", line 221, in raise_for_error
err.raise_mysql_exception(self._data)
File "/home/xbwafi/.local/lib/python3.8/site-packages/pymysql/err.py", line 143, in raise_mysql_exception
raise errorclass(errno, errval)
django.db.utils.IntegrityError: (1452, 'Cannot add or update a child row: a foreign key constraint fails (`ams`.`accounts_account`, CONSTRAINT `accounts_account_tenant_id_a28a6b83_fk_home_tenant_id` FOREIGN KEY (`tenant_id`) REFERENCES `home_tenant` (`id`))')
ERROR 2022-07-29 08:02:01,949 basehttp 8372 139906289030912 "POST /e-register/ HTTP/1.1" 500 230745
INFO 2022-07-29 08:02:17,124 basehttp 8372 139906289030912 "GET /e-register/ HTTP/1.1" 200 7162
INFO 2022-07-29 08:02:45,743 autoreload 8372 139906363647808 /home/xbwafi/Desktop/django/AMS/accounts/views.py changed, reloading.
INFO 2022-07-29 08:02:46,060 autoreload 8473 139926702982976 Watching for file changes with StatReloader
INFO 2022-07-29 08:02:51,947 basehttp 8473 139926628366080 "GET /e-register/ HTTP/1.1" 200 7162
ERROR 2022-07-29 08:02:55,942 log 8473 139926628366080 Internal Server Error: /e-register/
Traceback (most recent call last):
File "/home/xbwafi/.local/lib/python3.8/site-packages/django/core/handlers/exception.py", line 55, in inner
response = get_response(request)
File "/home/xbwafi/.local/lib/python3.8/site-packages/django/core/handlers/base.py", line 197, in _get_response
response = wrapped_callback(request, *callback_args, **callback_kwargs)
File "/home/xbwafi/Desktop/django/AMS/accounts/views.py", line 107, in e_register
user.save()
File "/home/xbwafi/.local/lib/python3.8/site-packages/django/contrib/auth/base_user.py", line 68, in save
super().save(*args, **kwargs)
File "/home/xbwafi/.local/lib/python3.8/site-packages/django/db/models/base.py", line 806, in save
self.save_base(
File "/home/xbwafi/.local/lib/python3.8/site-packages/django/db/models/base.py", line 857, in save_base
updated = self._save_table(
File "/home/xbwafi/.local/lib/python3.8/site-packages/django/db/models/base.py", line 970, in _save_table
updated = self._do_update(
File "/home/xbwafi/.local/lib/python3.8/site-packages/django/db/models/base.py", line 1034, in _do_update
return filtered._update(values) > 0
File "/home/xbwafi/.local/lib/python3.8/site-packages/django/db/models/query.py", line 885, in _update
return query.get_compiler(self.db).execute_sql(CURSOR)
File "/home/xbwafi/.local/lib/python3.8/site-packages/django/db/models/sql/compiler.py", line 1783, in execute_sql
cursor = super().execute_sql(result_type)
File "/home/xbwafi/.local/lib/python3.8/site-packages/django/db/models/sql/compiler.py", line 1348, in execute_sql
sql, params = self.as_sql()
File "/home/xbwafi/.local/lib/python3.8/site-packages/django/db/backends/mysql/compiler.py", line 50, in as_sql
update_query, update_params = super().as_sql()
File "/home/xbwafi/.local/lib/python3.8/site-packages/django/db/models/sql/compiler.py", line 1749, in as_sql
val = field.get_db_prep_save(val, connection=self.connection)
File "/home/xbwafi/.local/lib/python3.8/site-packages/django/db/models/fields/related.py", line 1126, in get_db_prep_save
return self.target_field.get_db_prep_save(value, connection=connection)
File "/home/xbwafi/.local/lib/python3.8/site-packages/django/db/models/fields/__init__.py", line 910, in get_db_prep_save
return self.get_db_prep_value(value, connection=connection, prepared=False)
File "/home/xbwafi/.local/lib/python3.8/site-packages/django/db/models/fields/__init__.py", line 2669, in get_db_prep_value
value = connection.ops.validate_autopk_value(value)
File "/home/xbwafi/.local/lib/python3.8/site-packages/django/db/backends/mysql/operations.py", line 249, in validate_autopk_value
raise ValueError(
ValueError: The database backend does not accept 0 as a value for AutoField.
ERROR 2022-07-29 08:02:55,945 basehttp 8473 139926628366080 "POST /e-register/ HTTP/1.1" 500 138483
INFO 2022-07-29 08:37:51,450 autoreload 8473 139926702982976 /home/xbwafi/Desktop/django/AMS/accounts/models.py changed, reloading.
INFO 2022-07-29 08:37:51,790 autoreload 14640 140286685218624 Watching for file changes with StatReloader
INFO 2022-07-29 08:38:01,564 autoreload 15090 139787425511232 Watching for file changes with StatReloader
INFO 2022-07-29 08:38:28,036 autoreload 15090 139787425511232 /home/xbwafi/Desktop/django/AMS/accounts/views.py changed, reloading.
INFO 2022-07-29 08:38:28,378 autoreload 15483 139999971546944 Watching for file changes with StatReloader
INFO 2022-07-29 08:38:33,131 basehttp 15483 139999827719936 "GET /e-register/ HTTP/1.1" 200 7162
ERROR 2022-07-29 08:38:37,705 log 15483 139999827719936 Internal Server Error: /e-register/
Traceback (most recent call last):
File "/home/xbwafi/.local/lib/python3.8/site-packages/django/db/models/fields/__init__.py", line 1988, in get_prep_value
return int(value)
ValueError: invalid literal for int() with base 10: 'null'
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/home/xbwafi/.local/lib/python3.8/site-packages/django/core/handlers/exception.py", line 55, in inner
response = get_response(request)
File "/home/xbwafi/.local/lib/python3.8/site-packages/django/core/handlers/base.py", line 197, in _get_response
response = wrapped_callback(request, *callback_args, **callback_kwargs)
File "/home/xbwafi/Desktop/django/AMS/accounts/views.py", line 102, in e_register
user = Account.objects.create_user(first_name=first_name, last_name=last_name, email=email, username=username, password=password)
File "/home/xbwafi/Desktop/django/AMS/accounts/models.py", line 27, in create_user
user.save(using=self._db)
File "/home/xbwafi/.local/lib/python3.8/site-packages/django/contrib/auth/base_user.py", line 68, in save
super().save(*args, **kwargs)
File "/home/xbwafi/.local/lib/python3.8/site-packages/django/db/models/base.py", line 806, in save
self.save_base(
File "/home/xbwafi/.local/lib/python3.8/site-packages/django/db/models/base.py", line 857, in save_base
updated = self._save_table(
File "/home/xbwafi/.local/lib/python3.8/site-packages/django/db/models/base.py", line 1000, in _save_table
results = self._do_insert(
File "/home/xbwafi/.local/lib/python3.8/site-packages/django/db/models/base.py", line 1041, in _do_insert
return manager._insert(
File "/home/xbwafi/.local/lib/python3.8/site-packages/django/db/models/manager.py", line 85, in manager_method
return getattr(self.get_queryset(), name)(*args, **kwargs)
File "/home/xbwafi/.local/lib/python3.8/site-packages/django/db/models/query.py", line 1434, in _insert
return query.get_compiler(using=using).execute_sql(returning_fields)
File "/home/xbwafi/.local/lib/python3.8/site-packages/django/db/models/sql/compiler.py", line 1620, in execute_sql
for sql, params in self.as_sql():
File "/home/xbwafi/.local/lib/python3.8/site-packages/django/db/models/sql/compiler.py", line 1547, in as_sql
value_rows = [
File "/home/xbwafi/.local/lib/python3.8/site-packages/django/db/models/sql/compiler.py", line 1548, in <listcomp>
[
File "/home/xbwafi/.local/lib/python3.8/site-packages/django/db/models/sql/compiler.py", line 1549, in <listcomp>
self.prepare_value(field, self.pre_save_val(field, obj))
File "/home/xbwafi/.local/lib/python3.8/site-packages/django/db/models/sql/compiler.py", line 1487, in prepare_value
value = field.get_db_prep_save(value, connection=self.connection)
File "/home/xbwafi/.local/lib/python3.8/site-packages/django/db/models/fields/related.py", line 1126, in get_db_prep_save
return self.target_field.get_db_prep_save(value, connection=connection)
File "/home/xbwafi/.local/lib/python3.8/site-packages/django/db/models/fields/__init__.py", line 910, in get_db_prep_save
return self.get_db_prep_value(value, connection=connection, prepared=False)
File "/home/xbwafi/.local/lib/python3.8/site-packages/django/db/models/fields/__init__.py", line 2668, in get_db_prep_value
value = self.get_prep_value(value)
File "/home/xbwafi/.local/lib/python3.8/site-packages/django/db/models/fields/__init__.py", line 1990, in get_prep_value
raise e.__class__(
ValueError: Field 'id' expected a number but got 'null'.
ERROR 2022-07-29 08:38:37,707 basehttp 15483 139999827719936 "POST /e-register/ HTTP/1.1" 500 156320
INFO 2022-07-29 08:38:44,665 basehttp 15483 139999827719936 "GET /e-register/ HTTP/1.1" 200 7162
INFO 2022-07-29 08:42:07,183 autoreload 15483 139999971546944 /home/xbwafi/Desktop/django/AMS/accounts/models.py changed, reloading.
INFO 2022-07-29 08:42:07,508 autoreload 15901 140177644394304 Watching for file changes with StatReloader
INFO 2022-07-29 08:42:15,237 autoreload 16065 139868306720576 Watching for file changes with StatReloader
INFO 2022-07-29 08:42:20,083 basehttp 16065 139868160128768 "GET /e-register/ HTTP/1.1" 200 7162
INFO 2022-07-29 08:42:26,876 basehttp 16065 139868160128768 "POST /e-register/ HTTP/1.1" 302 0
INFO 2022-07-29 08:42:26,888 basehttp 16065 139868160128768 "GET /e-login/ HTTP/1.1" 200 9746
INFO 2022-07-29 08:42:51,060 basehttp 16065 139868160128768 "GET /e-register/ HTTP/1.1" 200 6786
INFO 2022-07-29 08:42:51,876 basehttp 16065 139868160128768 "GET /e-register/ HTTP/1.1" 200 6786
INFO 2022-07-29 08:42:53,102 basehttp 16065 139868160128768 "GET /e-register/ HTTP/1.1" 200 6786
INFO 2022-07-29 08:42:53,217 basehttp 16065 139868160128768 "GET /e-register/ HTTP/1.1" 200 6786
INFO 2022-07-29 08:42:53,393 basehttp 16065 139868160128768 "GET /e-register/ HTTP/1.1" 200 6786
INFO 2022-07-29 08:42:53,516 basehttp 16065 139868160128768 "GET /e-register/ HTTP/1.1" 200 6786
INFO 2022-07-29 08:42:53,687 basehttp 16065 139868160128768 "GET /e-register/ HTTP/1.1" 200 6786
INFO 2022-07-29 08:42:57,263 basehttp 16065 139868160128768 "POST /e-register/ HTTP/1.1" 200 7124
INFO 2022-07-29 08:44:08,998 autoreload 16065 139868306720576 /home/xbwafi/Desktop/django/AMS/accounts/forms.py changed, reloading.
INFO 2022-07-29 08:44:09,319 autoreload 16235 140149955958592 Watching for file changes with StatReloader
INFO 2022-07-29 08:44:28,752 autoreload 16235 140149955958592 /home/xbwafi/Desktop/django/AMS/accounts/views.py changed, reloading.
INFO 2022-07-29 08:44:29,115 autoreload 16295 139826667558720 Watching for file changes with StatReloader
INFO 2022-07-29 08:45:24,969 autoreload 16295 139826667558720 /home/xbwafi/Desktop/django/AMS/accounts/forms.py changed, reloading.
INFO 2022-07-29 08:45:25,313 autoreload 16366 140674874980160 Watching for file changes with StatReloader
INFO 2022-07-29 08:45:52,895 autoreload 16366 140674874980160 /home/xbwafi/Desktop/django/AMS/accounts/views.py changed, reloading.
INFO 2022-07-29 08:45:53,212 autoreload 16437 139741166090048 Watching for file changes with StatReloader
INFO 2022-07-29 08:45:56,630 basehttp 16437 139741091473152 "GET /e-register/ HTTP/1.1" 200 6786
INFO 2022-07-29 08:45:57,214 basehttp 16437 139741091473152 "GET /e-register/ HTTP/1.1" 200 6786
INFO 2022-07-29 08:45:57,767 basehttp 16437 139741091473152 "GET /e-register/ HTTP/1.1" 200 6786
INFO 2022-07-29 08:45:57,879 basehttp 16437 139741091473152 "GET /e-register/ HTTP/1.1" 200 6786
INFO 2022-07-29 08:45:58,129 basehttp 16437 139741091473152 "GET /e-register/ HTTP/1.1" 200 6786
INFO 2022-07-29 08:45:58,341 basehttp 16437 139741091473152 "GET /e-register/ HTTP/1.1" 200 6786
ERROR 2022-07-29 08:46:02,849 log 16437 139741091473152 Internal Server Error: /e-register/
Traceback (most recent call last):
File "/home/xbwafi/.local/lib/python3.8/site-packages/django/core/handlers/exception.py", line 55, in inner
response = get_response(request)
File "/home/xbwafi/.local/lib/python3.8/site-packages/django/core/handlers/base.py", line 197, in _get_response
response = wrapped_callback(request, *callback_args, **callback_kwargs)
File "/home/xbwafi/Desktop/django/AMS/accounts/views.py", line 93, in e_register
form = RegistrationForm1(request.POST)
File "/home/xbwafi/Desktop/django/AMS/accounts/forms.py", line 82, in __init__
super(RegistrationForm, self).__init__(*args, **kwargs)
TypeError: super(type, obj): obj must be an instance or subtype of type
ERROR 2022-07-29 08:46:02,849 basehttp 16437 139741091473152 "POST /e-register/ HTTP/1.1" 500 71786
INFO 2022-07-29 08:46:46,212 autoreload 16437 139741166090048 /home/xbwafi/Desktop/django/AMS/accounts/views.py changed, reloading.
INFO 2022-07-29 08:46:46,523 autoreload 16589 140612118447936 Watching for file changes with StatReloader
ERROR 2022-07-29 08:46:50,895 log 16589 140611976713984 Internal Server Error: /e-register/
Traceback (most recent call last):
File "/home/xbwafi/.local/lib/python3.8/site-packages/django/core/handlers/exception.py", line 55, in inner
response = get_response(request)
File "/home/xbwafi/.local/lib/python3.8/site-packages/django/core/handlers/base.py", line 197, in _get_response
response = wrapped_callback(request, *callback_args, **callback_kwargs)
File "/home/xbwafi/Desktop/django/AMS/accounts/views.py", line 112, in e_register
form = RegistrationForm1()
File "/home/xbwafi/Desktop/django/AMS/accounts/forms.py", line 82, in __init__
super(RegistrationForm, self).__init__(*args, **kwargs)
TypeError: super(type, obj): obj must be an instance or subtype of type
ERROR 2022-07-29 08:46:50,896 basehttp 16589 140611976713984 "GET /e-register/ HTTP/1.1" 500 69451
ERROR 2022-07-29 08:46:51,141 log 16589 140611976713984 Internal Server Error: /e-register/
Traceback (most recent call last):
File "/home/xbwafi/.local/lib/python3.8/site-packages/django/core/handlers/exception.py", line 55, in inner
response = get_response(request)
File "/home/xbwafi/.local/lib/python3.8/site-packages/django/core/handlers/base.py", line 197, in _get_response
response = wrapped_callback(request, *callback_args, **callback_kwargs)
File "/home/xbwafi/Desktop/django/AMS/accounts/views.py", line 112, in e_register
form = RegistrationForm1()
File "/home/xbwafi/Desktop/django/AMS/accounts/forms.py", line 82, in __init__
super(RegistrationForm, self).__init__(*args, **kwargs)
TypeError: super(type, obj): obj must be an instance or subtype of type
ERROR 2022-07-29 08:46:51,141 basehttp 16589 140611976713984 "GET /e-register/ HTTP/1.1" 500 69451
ERROR 2022-07-29 08:46:51,418 log 16589 140611976713984 Internal Server Error: /e-register/
Traceback (most recent call last):
File "/home/xbwafi/.local/lib/python3.8/site-packages/django/core/handlers/exception.py", line 55, in inner
response = get_response(request)
File "/home/xbwafi/.local/lib/python3.8/site-packages/django/core/handlers/base.py", line 197, in _get_response
response = wrapped_callback(request, *callback_args, **callback_kwargs)
File "/home/xbwafi/Desktop/django/AMS/accounts/views.py", line 112, in e_register
form = RegistrationForm1()
File "/home/xbwafi/Desktop/django/AMS/accounts/forms.py", line 82, in __init__
super(RegistrationForm, self).__init__(*args, **kwargs)
TypeError: super(type, obj): obj must be an instance or subtype of type
ERROR 2022-07-29 08:46:51,419 basehttp 16589 140611976713984 "GET /e-register/ HTTP/1.1" 500 69451
INFO 2022-07-29 08:46:59,954 basehttp 16589 140611976713984 "GET / HTTP/1.1" 200 8767
ERROR 2022-07-29 08:47:04,035 log 16589 140611976713984 Internal Server Error: /e-register/
Traceback (most recent call last):
File "/home/xbwafi/.local/lib/python3.8/site-packages/django/core/handlers/exception.py", line 55, in inner
response = get_response(request)
File "/home/xbwafi/.local/lib/python3.8/site-packages/django/core/handlers/base.py", line 197, in _get_response
response = wrapped_callback(request, *callback_args, **callback_kwargs)
File "/home/xbwafi/Desktop/django/AMS/accounts/views.py", line 112, in e_register
form = RegistrationForm1()
File "/home/xbwafi/Desktop/django/AMS/accounts/forms.py", line 82, in __init__
super(RegistrationForm, self).__init__(*args, **kwargs)
TypeError: super(type, obj): obj must be an instance or subtype of type
ERROR 2022-07-29 08:47:04,035 basehttp 16589 140611976713984 "GET /e-register/ HTTP/1.1" 500 69451
ERROR 2022-07-29 08:47:10,684 log 16589 140611976713984 Internal Server Error: /e-register/
Traceback (most recent call last):
File "/home/xbwafi/.local/lib/python3.8/site-packages/django/core/handlers/exception.py", line 55, in inner
response = get_response(request)
File "/home/xbwafi/.local/lib/python3.8/site-packages/django/core/handlers/base.py", line 197, in _get_response
response = wrapped_callback(request, *callback_args, **callback_kwargs)
File "/home/xbwafi/Desktop/django/AMS/accounts/views.py", line 112, in e_register
form = RegistrationForm1()
File "/home/xbwafi/Desktop/django/AMS/accounts/forms.py", line 82, in __init__
super(RegistrationForm, self).__init__(*args, **kwargs)
TypeError: super(type, obj): obj must be an instance or subtype of type
ERROR 2022-07-29 08:47:10,684 basehttp 16589 140611976713984 "GET /e-register/ HTTP/1.1" 500 69314
INFO 2022-07-29 08:47:19,909 autoreload 16758 139721944831808 Watching for file changes with StatReloader
ERROR 2022-07-29 08:47:22,443 log 16758 139721795696384 Internal Server Error: /e-register/
Traceback (most recent call last):
File "/home/xbwafi/.local/lib/python3.8/site-packages/django/core/handlers/exception.py", line 55, in inner
response = get_response(request)
File "/home/xbwafi/.local/lib/python3.8/site-packages/django/core/handlers/base.py", line 197, in _get_response
response = wrapped_callback(request, *callback_args, **callback_kwargs)
File "/home/xbwafi/Desktop/django/AMS/accounts/views.py", line 112, in e_register
form = RegistrationForm1()
File "/home/xbwafi/Desktop/django/AMS/accounts/forms.py", line 82, in __init__
super(RegistrationForm, self).__init__(*args, **kwargs)
TypeError: super(type, obj): obj must be an instance or subtype of type
ERROR 2022-07-29 08:47:22,444 basehttp 16758 139721795696384 "GET /e-register/ HTTP/1.1" 500 69451
ERROR 2022-07-29 08:47:33,341 log 16758 139721795696384 Internal Server Error: /e-register/
Traceback (most recent call last):
File "/home/xbwafi/.local/lib/python3.8/site-packages/django/core/handlers/exception.py", line 55, in inner
response = get_response(request)
File "/home/xbwafi/.local/lib/python3.8/site-packages/django/core/handlers/base.py", line 197, in _get_response
response = wrapped_callback(request, *callback_args, **callback_kwargs)
File "/home/xbwafi/Desktop/django/AMS/accounts/views.py", line 112, in e_register
form = RegistrationForm1()
File "/home/xbwafi/Desktop/django/AMS/accounts/forms.py", line 82, in __init__
super(RegistrationForm, self).__init__(*args, **kwargs)
TypeError: super(type, obj): obj must be an instance or subtype of type
ERROR 2022-07-29 08:47:33,342 basehttp 16758 139721795696384 "GET /e-register/ HTTP/1.1" 500 69579
WARNING 2022-07-29 08:47:33,479 log 16758 139721795696384 Not Found: /favicon.ico
WARNING 2022-07-29 08:47:33,479 basehttp 16758 139721795696384 "GET /favicon.ico HTTP/1.1" 404 4663
ERROR 2022-07-29 08:47:33,836 log 16758 139721795696384 Internal Server Error: /e-register/
Traceback (most recent call last):
File "/home/xbwafi/.local/lib/python3.8/site-packages/django/core/handlers/exception.py", line 55, in inner
response = get_response(request)
File "/home/xbwafi/.local/lib/python3.8/site-packages/django/core/handlers/base.py", line 197, in _get_response
response = wrapped_callback(request, *callback_args, **callback_kwargs)
File "/home/xbwafi/Desktop/django/AMS/accounts/views.py", line 112, in e_register
form = RegistrationForm1()
File "/home/xbwafi/Desktop/django/AMS/accounts/forms.py", line 82, in __init__
super(RegistrationForm, self).__init__(*args, **kwargs)
TypeError: super(type, obj): obj must be an instance or subtype of type
ERROR 2022-07-29 08:47:33,836 basehttp 16758 139721795696384 "GET /e-register/ HTTP/1.1" 500 69579
WARNING 2022-07-29 08:47:33,976 log 16758 139721795696384 Not Found: /favicon.ico
WARNING 2022-07-29 08:47:33,983 basehttp 16758 139721795696384 "GET /favicon.ico HTTP/1.1" 404 4663
ERROR 2022-07-29 08:47:33,999 log 16758 139721787303680 Internal Server Error: /e-register/
Traceback (most recent call last):
File "/home/xbwafi/.local/lib/python3.8/site-packages/django/core/handlers/exception.py", line 55, in inner
response = get_response(request)
File "/home/xbwafi/.local/lib/python3.8/site-packages/django/core/handlers/base.py", line 197, in _get_response
response = wrapped_callback(request, *callback_args, **callback_kwargs)
File "/home/xbwafi/Desktop/django/AMS/accounts/views.py", line 112, in e_register
form = RegistrationForm1()
File "/home/xbwafi/Desktop/django/AMS/accounts/forms.py", line 82, in __init__
super(RegistrationForm, self).__init__(*args, **kwargs)
TypeError: super(type, obj): obj must be an instance or subtype of type
ERROR 2022-07-29 08:47:33,999 basehttp 16758 139721787303680 "GET /e-register/ HTTP/1.1" 500 69579
ERROR 2022-07-29 08:47:34,130 log 16758 139721787303680 Internal Server Error: /e-register/
Traceback (most recent call last):
File "/home/xbwafi/.local/lib/python3.8/site-packages/django/core/handlers/exception.py", line 55, in inner
response = get_response(request)
File "/home/xbwafi/.local/lib/python3.8/site-packages/django/core/handlers/base.py", line 197, in _get_response
response = wrapped_callback(request, *callback_args, **callback_kwargs)
File "/home/xbwafi/Desktop/django/AMS/accounts/views.py", line 112, in e_register
form = RegistrationForm1()
File "/home/xbwafi/Desktop/django/AMS/accounts/forms.py", line 82, in __init__
super(RegistrationForm, self).__init__(*args, **kwargs)
TypeError: super(type, obj): obj must be an instance or subtype of type
ERROR 2022-07-29 08:47:34,131 basehttp 16758 139721787303680 "GET /e-register/ HTTP/1.1" 500 69579
WARNING 2022-07-29 08:47:34,141 log 16758 139721787303680 Not Found: /favicon.ico
ERROR 2022-07-29 08:47:34,243 log 16758 139721795696384 Internal Server Error: /e-register/
Traceback (most recent call last):
File "/home/xbwafi/.local/lib/python3.8/site-packages/django/core/handlers/exception.py", line 55, in inner
response = get_response(request)
File "/home/xbwafi/.local/lib/python3.8/site-packages/django/core/handlers/base.py", line 197, in _get_response
response = wrapped_callback(request, *callback_args, **callback_kwargs)
File "/home/xbwafi/Desktop/django/AMS/accounts/views.py", line 112, in e_register
form = RegistrationForm1()
File "/home/xbwafi/Desktop/django/AMS/accounts/forms.py", line 82, in __init__
super(RegistrationForm, self).__init__(*args, **kwargs)
TypeError: super(type, obj): obj must be an instance or subtype of type
ERROR 2022-07-29 08:47:34,243 basehttp 16758 139721795696384 "GET /e-register/ HTTP/1.1" 500 69579
ERROR 2022-07-29 08:47:34,383 log 16758 139721795696384 Internal Server Error: /e-register/
Traceback (most recent call last):
File "/home/xbwafi/.local/lib/python3.8/site-packages/django/core/handlers/exception.py", line 55, in inner
response = get_response(request)
File "/home/xbwafi/.local/lib/python3.8/site-packages/django/core/handlers/base.py", line 197, in _get_response
response = wrapped_callback(request, *callback_args, **callback_kwargs)
File "/home/xbwafi/Desktop/django/AMS/accounts/views.py", line 112, in e_register
form = RegistrationForm1()
File "/home/xbwafi/Desktop/django/AMS/accounts/forms.py", line 82, in __init__
super(RegistrationForm, self).__init__(*args, **kwargs)
TypeError: super(type, obj): obj must be an instance or subtype of type
WARNING 2022-07-29 08:47:34,387 log 16758 139721787303680 Not Found: /favicon.ico
WARNING 2022-07-29 08:47:34,388 basehttp 16758 139721787303680 "GET /favicon.ico HTTP/1.1" 404 4663
ERROR 2022-07-29 08:47:34,388 basehttp 16758 139721795696384 "GET /e-register/ HTTP/1.1" 500 69579
ERROR 2022-07-29 08:47:34,486 log 16758 139721795696384 Internal Server Error: /e-register/
Traceback (most recent call last):
File "/home/xbwafi/.local/lib/python3.8/site-packages/django/core/handlers/exception.py", line 55, in inner
response = get_response(request)
File "/home/xbwafi/.local/lib/python3.8/site-packages/django/core/handlers/base.py", line 197, in _get_response
response = wrapped_callback(request, *callback_args, **callback_kwargs)
File "/home/xbwafi/Desktop/django/AMS/accounts/views.py", line 112, in e_register
form = RegistrationForm1()
File "/home/xbwafi/Desktop/django/AMS/accounts/forms.py", line 82, in __init__
super(RegistrationForm, self).__init__(*args, **kwargs)
TypeError: super(type, obj): obj must be an instance or subtype of type
ERROR 2022-07-29 08:47:34,487 basehttp 16758 139721795696384 "GET /e-register/ HTTP/1.1" 500 69579
WARNING 2022-07-29 08:47:34,518 log 16758 139721795696384 Not Found: /favicon.ico
WARNING 2022-07-29 08:47:34,518 basehttp 16758 139721795696384 "GET /favicon.ico HTTP/1.1" 404 4663
WARNING 2022-07-29 08:47:34,626 log 16758 139721795696384 Not Found: /favicon.ico
WARNING 2022-07-29 08:47:34,626 basehttp 16758 139721795696384 "GET /favicon.ico HTTP/1.1" 404 4663
ERROR 2022-07-29 08:47:34,683 log 16758 139721795696384 Internal Server Error: /e-register/
Traceback (most recent call last):
File "/home/xbwafi/.local/lib/python3.8/site-packages/django/core/handlers/exception.py", line 55, in inner
response = get_response(request)
File "/home/xbwafi/.local/lib/python3.8/site-packages/django/core/handlers/base.py", line 197, in _get_response
response = wrapped_callback(request, *callback_args, **callback_kwargs)
File "/home/xbwafi/Desktop/django/AMS/accounts/views.py", line 112, in e_register
form = RegistrationForm1()
File "/home/xbwafi/Desktop/django/AMS/accounts/forms.py", line 82, in __init__
super(RegistrationForm, self).__init__(*args, **kwargs)
TypeError: super(type, obj): obj must be an instance or subtype of type
ERROR 2022-07-29 08:47:34,684 basehttp 16758 139721795696384 "GET /e-register/ HTTP/1.1" 500 69579
WARNING 2022-07-29 08:47:34,781 log 16758 139721795696384 Not Found: /favicon.ico
WARNING 2022-07-29 08:47:34,781 basehttp 16758 139721795696384 "GET /favicon.ico HTTP/1.1" 404 4663
INFO 2022-07-29 08:48:32,079 autoreload 16758 139721944831808 /home/xbwafi/Desktop/django/AMS/accounts/forms.py changed, reloading.
INFO 2022-07-29 08:48:32,550 autoreload 17002 140217267259200 Watching for file changes with StatReloader
INFO 2022-07-29 08:48:51,103 autoreload 17002 140217267259200 /home/xbwafi/Desktop/django/AMS/accounts/forms.py changed, reloading.
INFO 2022-07-29 08:48:51,437 autoreload 17060 139908381329216 Watching for file changes with StatReloader
INFO 2022-07-29 08:48:53,964 basehttp 17060 139908306712320 "GET /e-register/ HTTP/1.1" 200 6786
INFO 2022-07-29 08:48:55,900 basehttp 17060 139908306712320 "GET /e-register/ HTTP/1.1" 200 6786
INFO 2022-07-29 08:49:00,092 basehttp 17060 139908306712320 "POST /e-register/ HTTP/1.1" 302 0
INFO 2022-07-29 08:49:00,105 basehttp 17060 139908306712320 "GET /e-login/ HTTP/1.1" 200 9750
INFO 2022-07-29 08:49:33,743 basehttp 17060 139908306712320 "GET /e-register/ HTTP/1.1" 200 6786
INFO 2022-07-29 08:50:03,839 basehttp 17060 139908306712320 "GET /e-register/ HTTP/1.1" 200 6702
INFO 2022-07-29 08:50:27,731 basehttp 17060 139908306712320 "GET /e-register/ HTTP/1.1" 200 6702
INFO 2022-07-29 08:50:34,916 basehttp 17060 139908306712320 "GET /t-register/ HTTP/1.1" 200 6337
INFO 2022-07-29 08:50:45,798 basehttp 17060 139908306712320 "GET /e-register/ HTTP/1.1" 200 6702
INFO 2022-07-29 08:51:21,528 basehttp 17060 139908306712320 "GET /e-register/ HTTP/1.1" 200 6702
INFO 2022-07-29 08:51:24,516 basehttp 17060 139908306712320 "GET /t-register/ HTTP/1.1" 200 6344
INFO 2022-07-29 08:51:25,392 basehttp 17060 139908306712320 "GET /t-register/ HTTP/1.1" 200 6344
INFO 2022-07-29 08:51:25,905 basehttp 17060 139908306712320 "GET /t-register/ HTTP/1.1" 200 6344
INFO 2022-07-29 08:52:03,642 basehttp 17060 139908306712320 "GET /t-register/ HTTP/1.1" 200 6337
INFO 2022-07-29 09:47:51,456 autoreload 3027 139929830393664 Watching for file changes with StatReloader
INFO 2022-07-29 09:49:22,478 basehttp 3027 139929688635136 "GET / HTTP/1.1" 200 8767
WARNING 2022-07-29 09:49:22,961 log 3027 139929688635136 Not Found: /favicon.ico
WARNING 2022-07-29 09:49:22,961 basehttp 3027 139929688635136 "GET /favicon.ico HTTP/1.1" 404 4663
INFO 2022-07-29 09:49:24,575 basehttp 3027 139929688635136 "POST / HTTP/1.1" 302 0
INFO 2022-07-29 09:49:24,630 basehttp 3027 139929688635136 "GET /dashboard/ HTTP/1.1" 200 32400
INFO 2022-07-29 09:49:24,667 basehttp 3027 139929688635136 "GET /static/assets/plugins/popper/popper.min.js HTTP/1.1" 200 29431
INFO 2022-07-29 09:49:24,669 basehttp 3027 139929653229312 "GET /static/assets/js/init-tdatatable.js HTTP/1.1" 200 4062
INFO 2022-07-29 09:49:24,670 basehttp 3027 139929670014720 "GET /static/assets/plugins/daterangepicker/daterangepicker.min.js HTTP/1.1" 200 32608
INFO 2022-07-29 09:49:24,671 basehttp 3027 139929661622016 "GET /static/assets/plugins/datatables/jquery.dataTables.min.js HTTP/1.1" 200 86549
INFO 2022-07-29 09:49:24,671 basehttp 3027 139929678407424 "GET /static/assets/plugins/moment/moment.min.js HTTP/1.1" 200 51465
INFO 2022-07-29 09:49:24,672 basehttp 3027 139929644836608 "GET /static/assets/plugins/chart/chart/Chart.min.js HTTP/1.1" 200 158741
INFO 2022-07-29 09:49:24,674 basehttp 3027 139929688635136 "GET /static/assets/js/charts-custom.js HTTP/1.1" 200 2274
INFO 2022-07-29 09:49:24,688 basehttp 3027 139929678407424 "GET /static/assets/plugins/bootstrap/js/bootstrap.model.js HTTP/1.1" 200 50564
INFO 2022-07-29 09:49:24,829 basehttp 3027 139929688635136 "GET /static/assets/fonts/fontawesome/webfonts/fa-solid-900.woff2 HTTP/1.1" 200 78196
INFO 2022-07-29 09:49:24,949 basehttp 3027 139929688635136 "GET /static/assets/fonts/fontawesome/webfonts/fa-regular-400.woff2 HTTP/1.1" 200 13276
INFO 2022-07-29 09:49:30,914 basehttp 3027 139929688635136 "GET /home/tenant HTTP/1.1" 200 79841
INFO 2022-07-29 09:49:30,943 basehttp 3027 139929688635136 "GET /static/assets/js/ajax.js HTTP/1.1" 200 89500
INFO 2022-07-29 09:49:30,953 basehttp 3027 139929678407424 "GET /media/tenant/download_2.jpeg HTTP/1.1" 200 4592
WARNING 2022-07-29 09:49:30,962 log 3027 139929644836608 Not Found: /media/tenant/images.jpeg
WARNING 2022-07-29 09:49:30,962 basehttp 3027 139929644836608 "GET /media/tenant/images.jpeg HTTP/1.1" 404 4908
INFO 2022-07-29 09:49:30,962 basehttp 3027 139929661622016 "GET /media/tenant/26229-1.jpg HTTP/1.1" 200 32597
WARNING 2022-07-29 09:49:30,991 log 3027 139929688635136 Not Found: /media/tenant/images.jpeg
WARNING 2022-07-29 09:49:30,991 basehttp 3027 139929688635136 "GET /media/tenant/images.jpeg HTTP/1.1" 404 4908
INFO 2022-07-29 09:49:31,035 basehttp 3027 139929688635136 "GET /static/assets/images/datatables/sort_both.png HTTP/1.1" 200 1087
INFO 2022-07-29 09:49:31,062 basehttp 3027 139929644836608 "GET /static/assets/images/datatables/sort_asc.png HTTP/1.1" 200 1023
INFO 2022-07-29 09:49:41,333 basehttp 3027 139929688635136 "POST /home/floor-ajax HTTP/1.1" 200 150
INFO 2022-07-29 09:49:55,832 basehttp 3027 139929688635136 "POST /home/delete-tenant/3 HTTP/1.1" 302 0
INFO 2022-07-29 09:49:55,876 basehttp 3027 139929688635136 "GET /home/tenant HTTP/1.1" 200 61205