-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathim.logic.log
1376 lines (1376 loc) · 209 KB
/
im.logic.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
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-23T22:07:24.195+0800","caller":"logger/zap.go:64","msg":"init logger success"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-23T22:09:25.153+0800","caller":"logger/zap.go:64","msg":"init logger success"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-23T22:09:25.154+0800","caller":"logic/main.go:96","msg":"Grpc Service Success"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-23T22:09:25.169+0800","caller":"logic/main.go:92","msg":"Register Service Success"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-24T14:03:45.319+0800","caller":"logger/zap.go:64","msg":"init logger success"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-24T14:03:53.075+0800","caller":"logic/main.go:121","msg":"Shutdown Server ..."}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-24T14:04:00.217+0800","caller":"logger/zap.go:64","msg":"init logger success"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-24T14:04:00.218+0800","caller":"logic/main.go:96","msg":"Grpc Service Success"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-24T14:04:00.231+0800","caller":"logic/main.go:92","msg":"Register Service Success"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-24T15:58:39.847+0800","caller":"logic/main.go:121","msg":"Shutdown Server ..."}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-24T22:55:49.344+0800","caller":"logger/zap.go:64","msg":"init logger success"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-24T22:55:49.346+0800","caller":"logic/main.go:96","msg":"Grpc Service Success"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-24T22:55:49.423+0800","caller":"logic/main.go:92","msg":"Register Service Success"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T00:34:38.793+0800","caller":"logic/main.go:121","msg":"Shutdown Server ..."}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T00:34:55.547+0800","caller":"logger/zap.go:64","msg":"init logger success"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T00:34:55.549+0800","caller":"logic/main.go:96","msg":"Grpc Service Success"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T00:34:55.567+0800","caller":"logic/main.go:92","msg":"Register Service Success"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T00:39:08.709+0800","caller":"logic/main.go:121","msg":"Shutdown Server ..."}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T00:39:13.236+0800","caller":"logger/zap.go:64","msg":"init logger success"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T00:39:13.237+0800","caller":"logic/main.go:96","msg":"Grpc Service Success"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T00:39:13.257+0800","caller":"logic/main.go:92","msg":"Register Service Success"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T00:40:19.793+0800","caller":"logic/main.go:121","msg":"Shutdown Server ..."}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T00:40:22.830+0800","caller":"logger/zap.go:64","msg":"init logger success"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T00:40:22.832+0800","caller":"logic/main.go:96","msg":"Grpc Service Success"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T00:40:22.848+0800","caller":"logic/main.go:92","msg":"Register Service Success"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T00:41:28.306+0800","caller":"logic/main.go:121","msg":"Shutdown Server ..."}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T00:41:57.331+0800","caller":"logger/zap.go:64","msg":"init logger success"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T00:41:57.333+0800","caller":"logic/main.go:96","msg":"Grpc Service Success"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T00:41:57.351+0800","caller":"logic/main.go:92","msg":"Register Service Success"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T00:45:30.481+0800","caller":"logic/main.go:121","msg":"Shutdown Server ..."}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T00:45:50.800+0800","caller":"logger/zap.go:64","msg":"init logger success"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T00:45:50.802+0800","caller":"logic/main.go:96","msg":"Grpc Service Success"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T00:45:50.820+0800","caller":"logic/main.go:92","msg":"Register Service Success"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T00:46:05.590+0800","caller":"logic/conn.go:140","msg":"renew online","maps":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:01:01.164+0800","caller":"logic/main.go:121","msg":"Shutdown Server ..."}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:01:05.484+0800","caller":"logger/zap.go:64","msg":"init logger success"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:01:05.485+0800","caller":"logic/main.go:96","msg":"Grpc Service Success"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:01:05.505+0800","caller":"logic/main.go:92","msg":"Register Service Success"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:03:28.797+0800","caller":"logic/main.go:121","msg":"Shutdown Server ..."}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:03:36.447+0800","caller":"logger/zap.go:64","msg":"init logger success"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:03:36.450+0800","caller":"logic/main.go:96","msg":"Grpc Service Success"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:03:36.462+0800","caller":"logic/replicant.go:262","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:03:36.477+0800","caller":"logic/main.go:92","msg":"Register Service Success"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:03:46.463+0800","caller":"logic/replicant.go:262","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:03:56.462+0800","caller":"logic/replicant.go:262","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:04:06.462+0800","caller":"logic/replicant.go:262","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:04:16.462+0800","caller":"logic/replicant.go:262","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:04:26.462+0800","caller":"logic/replicant.go:262","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:04:36.462+0800","caller":"logic/replicant.go:262","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:04:46.462+0800","caller":"logic/replicant.go:262","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:04:51.162+0800","caller":"logic/main.go:121","msg":"Shutdown Server ..."}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:04:56.572+0800","caller":"logger/zap.go:64","msg":"init logger success"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:04:56.574+0800","caller":"logic/main.go:96","msg":"Grpc Service Success"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:04:56.606+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:04:56.626+0800","caller":"logic/main.go:92","msg":"Register Service Success"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:05:06.607+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:05:16.606+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:05:26.607+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:05:36.607+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:05:46.607+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:05:56.607+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:06:06.607+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:06:15.042+0800","caller":"logic/main.go:121","msg":"Shutdown Server ..."}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:06:18.337+0800","caller":"logger/zap.go:64","msg":"init logger success"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:06:18.338+0800","caller":"logic/main.go:96","msg":"Grpc Service Success"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:06:18.350+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:06:18.362+0800","caller":"logic/main.go:92","msg":"Register Service Success"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:06:28.350+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"im.gateway"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:06:28.460+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:06:38.350+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"im.gateway"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:06:38.454+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:06:48.351+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"im.gateway"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:06:48.471+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:06:58.351+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"im.gateway"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:06:58.447+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:07:08.351+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"im.gateway"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:07:08.466+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:07:18.351+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"im.gateway"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:07:18.476+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:07:28.351+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"im.gateway"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:07:28.448+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:07:38.351+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"im.gateway"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:07:38.455+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:07:48.351+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"im.gateway"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:07:48.438+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:07:58.351+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"im.gateway"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:07:58.459+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:08:08.351+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"im.gateway"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:08:08.434+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:08:18.351+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"im.gateway"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:08:18.437+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:08:28.351+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"im.gateway"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:08:28.447+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:08:38.351+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"im.gateway"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:08:38.483+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:08:48.350+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"im.gateway"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:08:48.446+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:08:58.350+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"im.gateway"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:08:58.448+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:09:08.350+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"im.gateway"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:09:08.531+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:09:18.350+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"im.gateway"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:09:18.450+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:09:28.350+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"im.gateway"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:09:28.461+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:09:38.350+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"im.gateway"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:09:38.538+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:09:48.350+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"im.gateway"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:09:48.451+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:09:58.350+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"im.gateway"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:09:58.470+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:10:08.350+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"im.gateway"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:10:08.471+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:10:18.350+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"im.gateway"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:10:18.520+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:10:28.350+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"im.gateway"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:10:28.449+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:10:38.358+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"im.gateway"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:10:38.541+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:10:48.350+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"im.gateway"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:10:48.495+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:10:58.350+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"im.gateway"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:10:58.453+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:11:08.350+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"im.gateway"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:11:08.497+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:11:18.353+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"im.gateway"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:11:18.495+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:11:28.350+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"im.gateway"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:11:28.484+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:11:38.350+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"im.gateway"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:11:38.454+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:11:48.350+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"im.gateway"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:11:48.457+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:11:58.350+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"im.gateway"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:11:58.445+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:12:08.350+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"im.gateway"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:12:08.494+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:12:18.350+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"im.gateway"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:12:18.448+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:12:27.852+0800","caller":"logic/main.go:121","msg":"Shutdown Server ..."}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:12:47.556+0800","caller":"logger/zap.go:64","msg":"init logger success"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:12:47.558+0800","caller":"logic/main.go:96","msg":"Grpc Service Success"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:12:47.570+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:12:47.593+0800","caller":"logic/main.go:92","msg":"Register Service Success"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:12:57.571+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:13:07.570+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:13:17.570+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:13:27.571+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:13:37.571+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:13:47.571+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"im.gateway"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:13:47.659+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:13:57.571+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"im.gateway"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:13:57.656+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:14:07.571+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"im.gateway"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:14:07.721+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:14:17.571+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"im.gateway"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:14:17.715+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:14:27.571+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"im.gateway"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:14:27.688+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:14:37.571+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"im.gateway"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:14:37.777+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:14:47.571+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"im.gateway"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:14:47.661+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:14:57.572+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"im.gateway"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:14:57.684+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:15:07.571+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"im.gateway"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:15:07.668+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:15:17.571+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"im.gateway"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:15:17.644+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:15:27.572+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"im.gateway"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:15:27.641+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:15:37.571+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"im.gateway"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:15:37.708+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:15:47.572+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"im.gateway"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:15:47.663+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:15:57.571+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"im.gateway"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:15:57.650+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:16:07.571+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"im.gateway"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:16:07.656+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:16:17.571+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"im.gateway"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:16:17.665+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:16:27.571+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"im.gateway"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:16:27.648+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:16:37.571+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"im.gateway"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:16:37.651+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:16:47.571+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"im.gateway"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:16:47.664+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:16:57.571+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"im.gateway"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:16:57.636+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:17:07.571+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"im.gateway"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:17:07.630+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:17:17.571+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"im.gateway"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:17:17.662+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:17:27.571+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"im.gateway"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:17:27.629+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:17:37.572+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"im.gateway"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:17:37.629+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:17:47.571+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"im.gateway"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:17:47.628+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:17:57.574+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"im.gateway"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:17:57.655+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:18:07.571+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"im.gateway"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:18:07.633+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:18:17.571+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"im.gateway"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:18:17.636+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:18:27.572+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"im.gateway"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:18:27.648+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:18:37.572+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"im.gateway"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:18:37.636+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:18:47.572+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"im.gateway"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:18:47.625+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:18:57.571+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"im.gateway"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:18:57.626+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:19:07.571+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"im.gateway"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:19:07.628+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:19:17.572+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"im.gateway"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:19:17.640+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:19:27.572+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"im.gateway"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:19:27.669+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:19:37.576+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"im.gateway"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:19:37.791+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:19:47.572+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"im.gateway"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:19:47.676+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:19:57.572+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"im.gateway"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:19:57.670+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:20:07.571+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"im.gateway"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:20:07.651+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:20:17.572+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"im.gateway"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:20:17.642+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:20:27.572+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"im.gateway"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:20:27.632+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:20:37.572+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"im.gateway"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:20:37.642+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:20:47.572+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"im.gateway"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:20:47.683+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:20:51.891+0800","caller":"logic/main.go:121","msg":"Shutdown Server ..."}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:20:55.605+0800","caller":"logger/zap.go:64","msg":"init logger success"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:20:55.606+0800","caller":"logic/main.go:96","msg":"Grpc Service Success"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:20:55.613+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:20:55.622+0800","caller":"logic/main.go:92","msg":"Register Service Success"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:21:05.614+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"yanghaodeMacBook-Pro"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:21:05.692+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{"test://1":1}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:21:15.613+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"yanghaodeMacBook-Pro"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:21:15.694+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{"test://1":1}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:21:25.613+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"yanghaodeMacBook-Pro"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:21:25.691+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{"test://1":1}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:21:35.613+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"yanghaodeMacBook-Pro"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:21:35.718+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{"test://1":1}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:21:45.614+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"yanghaodeMacBook-Pro"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:21:45.704+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{"test://1":1}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:21:55.614+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"yanghaodeMacBook-Pro"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:21:55.768+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{"test://1":1}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:22:02.245+0800","caller":"logic/main.go:121","msg":"Shutdown Server ..."}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:22:05.940+0800","caller":"logger/zap.go:64","msg":"init logger success"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:22:05.941+0800","caller":"logic/main.go:96","msg":"Grpc Service Success"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:22:05.952+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:22:05.963+0800","caller":"logic/main.go:92","msg":"Register Service Success"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:22:15.953+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:22:25.952+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"4c5d1618-acae-473a-b0b8-307bdaa6cade"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:22:26.167+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{"test://1":1}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:22:35.952+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"4c5d1618-acae-473a-b0b8-307bdaa6cade"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:22:36.051+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{"test://1":1}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:22:45.952+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"4c5d1618-acae-473a-b0b8-307bdaa6cade"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:22:46.074+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{"test://1":1}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:22:55.953+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"4c5d1618-acae-473a-b0b8-307bdaa6cade"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:22:56.036+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{"test://1":1}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:23:05.952+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"4c5d1618-acae-473a-b0b8-307bdaa6cade"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:23:06.035+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{"test://1":1}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:23:15.953+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"4c5d1618-acae-473a-b0b8-307bdaa6cade"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:23:16.057+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{"test://1":1}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:23:25.952+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"4c5d1618-acae-473a-b0b8-307bdaa6cade"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:23:26.058+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{"test://1":1}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:23:35.952+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"4c5d1618-acae-473a-b0b8-307bdaa6cade"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:23:36.038+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{"test://1":1}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:23:45.953+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"4c5d1618-acae-473a-b0b8-307bdaa6cade"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:23:46.034+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{"test://1":1}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:23:55.953+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"4c5d1618-acae-473a-b0b8-307bdaa6cade"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:23:56.035+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{"test://1":1}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:24:05.953+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"4c5d1618-acae-473a-b0b8-307bdaa6cade"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:24:06.033+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{"test://1":1}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:24:15.959+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"4c5d1618-acae-473a-b0b8-307bdaa6cade"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:24:16.081+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{"test://1":1}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:24:25.960+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"4c5d1618-acae-473a-b0b8-307bdaa6cade"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:24:26.137+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{"test://1":1}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:24:35.953+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"4c5d1618-acae-473a-b0b8-307bdaa6cade"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:24:36.066+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{"test://1":1}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:24:45.953+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"4c5d1618-acae-473a-b0b8-307bdaa6cade"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:24:46.061+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{"test://1":1}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:24:55.953+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"4c5d1618-acae-473a-b0b8-307bdaa6cade"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:24:56.042+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{"test://1":1}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:25:05.953+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"4c5d1618-acae-473a-b0b8-307bdaa6cade"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:25:06.066+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{"test://1":1}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:25:15.953+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"4c5d1618-acae-473a-b0b8-307bdaa6cade"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:25:16.041+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{"test://1":1}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:25:25.953+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"4c5d1618-acae-473a-b0b8-307bdaa6cade"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:25:26.050+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{"test://1":1}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:25:35.953+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"4c5d1618-acae-473a-b0b8-307bdaa6cade"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:25:36.050+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{"test://1":1}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:25:45.953+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"4c5d1618-acae-473a-b0b8-307bdaa6cade"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:25:46.064+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{"test://1":1}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:25:55.953+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"4c5d1618-acae-473a-b0b8-307bdaa6cade"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:25:56.069+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{"test://1":1}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:26:05.953+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"4c5d1618-acae-473a-b0b8-307bdaa6cade"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:26:06.071+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{"test://1":1}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:26:15.953+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"4c5d1618-acae-473a-b0b8-307bdaa6cade"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:26:16.112+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{"test://1":1}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:26:25.953+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"4c5d1618-acae-473a-b0b8-307bdaa6cade"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:26:26.075+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{"test://1":1}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:26:35.953+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"4c5d1618-acae-473a-b0b8-307bdaa6cade"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:26:36.073+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{"test://1":1}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:26:45.953+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"4c5d1618-acae-473a-b0b8-307bdaa6cade"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:26:46.073+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{"test://1":1}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:26:55.954+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"4c5d1618-acae-473a-b0b8-307bdaa6cade"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:26:56.101+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{"test://1":1}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:27:05.954+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"4c5d1618-acae-473a-b0b8-307bdaa6cade"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:27:06.064+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{"test://1":1}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:27:15.953+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"4c5d1618-acae-473a-b0b8-307bdaa6cade"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:27:16.057+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{"test://1":1}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:27:25.953+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"4c5d1618-acae-473a-b0b8-307bdaa6cade"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:27:26.074+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{"test://1":1}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:27:35.954+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"4c5d1618-acae-473a-b0b8-307bdaa6cade"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:27:36.043+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:27:45.954+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"4c5d1618-acae-473a-b0b8-307bdaa6cade"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:27:46.035+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:27:55.954+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"4c5d1618-acae-473a-b0b8-307bdaa6cade"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:27:56.019+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:28:05.953+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"4c5d1618-acae-473a-b0b8-307bdaa6cade"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:28:06.014+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:28:15.953+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"4c5d1618-acae-473a-b0b8-307bdaa6cade"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:28:16.022+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:28:25.954+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"4c5d1618-acae-473a-b0b8-307bdaa6cade"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:28:26.030+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:28:35.954+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"4c5d1618-acae-473a-b0b8-307bdaa6cade"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:28:36.053+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:28:45.954+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"4c5d1618-acae-473a-b0b8-307bdaa6cade"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:28:46.039+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:28:55.954+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"4c5d1618-acae-473a-b0b8-307bdaa6cade"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:28:56.066+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:29:05.954+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"4c5d1618-acae-473a-b0b8-307bdaa6cade"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:29:06.047+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:29:15.954+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"4c5d1618-acae-473a-b0b8-307bdaa6cade"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:29:16.045+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:29:25.954+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"4c5d1618-acae-473a-b0b8-307bdaa6cade"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:29:26.050+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:29:35.954+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"4c5d1618-acae-473a-b0b8-307bdaa6cade"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:29:36.052+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:29:45.954+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"4c5d1618-acae-473a-b0b8-307bdaa6cade"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:29:46.036+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:29:55.954+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"4c5d1618-acae-473a-b0b8-307bdaa6cade"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:29:56.039+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:30:05.954+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"4c5d1618-acae-473a-b0b8-307bdaa6cade"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:30:06.041+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:30:15.954+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"4c5d1618-acae-473a-b0b8-307bdaa6cade"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:30:16.065+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:30:25.954+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"4c5d1618-acae-473a-b0b8-307bdaa6cade"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:30:26.054+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:30:35.954+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"4c5d1618-acae-473a-b0b8-307bdaa6cade"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:30:36.072+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:30:45.954+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"4c5d1618-acae-473a-b0b8-307bdaa6cade"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:30:46.050+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:30:55.954+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"4c5d1618-acae-473a-b0b8-307bdaa6cade"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:30:56.058+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:31:05.954+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"4c5d1618-acae-473a-b0b8-307bdaa6cade"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:31:06.055+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:31:15.954+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"4c5d1618-acae-473a-b0b8-307bdaa6cade"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:31:16.059+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:31:25.954+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"4c5d1618-acae-473a-b0b8-307bdaa6cade"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:31:26.054+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:31:35.955+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"4c5d1618-acae-473a-b0b8-307bdaa6cade"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:31:36.056+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:31:45.954+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"4c5d1618-acae-473a-b0b8-307bdaa6cade"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:31:46.055+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:31:55.954+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"4c5d1618-acae-473a-b0b8-307bdaa6cade"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:31:56.067+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:32:05.955+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"4c5d1618-acae-473a-b0b8-307bdaa6cade"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:32:06.064+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:32:15.954+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"4c5d1618-acae-473a-b0b8-307bdaa6cade"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:32:16.071+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:32:25.955+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"4c5d1618-acae-473a-b0b8-307bdaa6cade"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:32:26.049+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:32:35.955+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"4c5d1618-acae-473a-b0b8-307bdaa6cade"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:32:36.049+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:32:45.955+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"4c5d1618-acae-473a-b0b8-307bdaa6cade"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:32:46.044+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:32:55.955+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"4c5d1618-acae-473a-b0b8-307bdaa6cade"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:32:56.042+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:33:05.955+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"4c5d1618-acae-473a-b0b8-307bdaa6cade"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:33:06.042+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:33:15.955+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"4c5d1618-acae-473a-b0b8-307bdaa6cade"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:33:16.037+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:33:25.955+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"4c5d1618-acae-473a-b0b8-307bdaa6cade"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:33:26.055+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:33:35.955+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"4c5d1618-acae-473a-b0b8-307bdaa6cade"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:33:36.030+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:33:45.955+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"4c5d1618-acae-473a-b0b8-307bdaa6cade"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:33:46.067+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:33:55.955+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"4c5d1618-acae-473a-b0b8-307bdaa6cade"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:33:56.091+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:34:05.955+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"4c5d1618-acae-473a-b0b8-307bdaa6cade"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:34:06.049+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:34:15.955+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"4c5d1618-acae-473a-b0b8-307bdaa6cade"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:34:16.041+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:34:25.955+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"4c5d1618-acae-473a-b0b8-307bdaa6cade"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:34:26.048+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:34:35.955+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"4c5d1618-acae-473a-b0b8-307bdaa6cade"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:34:36.039+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:34:45.955+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"4c5d1618-acae-473a-b0b8-307bdaa6cade"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:34:46.106+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:34:55.956+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"4c5d1618-acae-473a-b0b8-307bdaa6cade"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:34:56.046+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:35:05.955+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"4c5d1618-acae-473a-b0b8-307bdaa6cade"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:35:06.071+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:35:15.956+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"4c5d1618-acae-473a-b0b8-307bdaa6cade"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:35:16.073+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:35:25.956+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"4c5d1618-acae-473a-b0b8-307bdaa6cade"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:35:26.060+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:35:35.955+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"4c5d1618-acae-473a-b0b8-307bdaa6cade"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:35:36.068+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:35:45.955+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"4c5d1618-acae-473a-b0b8-307bdaa6cade"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:35:46.077+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:35:55.955+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"4c5d1618-acae-473a-b0b8-307bdaa6cade"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:35:56.116+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:36:05.956+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"4c5d1618-acae-473a-b0b8-307bdaa6cade"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:36:06.060+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:36:15.956+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"4c5d1618-acae-473a-b0b8-307bdaa6cade"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:36:16.069+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:36:25.956+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"4c5d1618-acae-473a-b0b8-307bdaa6cade"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:36:26.047+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:36:35.956+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"4c5d1618-acae-473a-b0b8-307bdaa6cade"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:36:36.043+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:36:45.956+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"4c5d1618-acae-473a-b0b8-307bdaa6cade"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:36:46.034+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:36:55.955+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"4c5d1618-acae-473a-b0b8-307bdaa6cade"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:36:56.042+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:37:05.955+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"4c5d1618-acae-473a-b0b8-307bdaa6cade"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:37:06.062+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:37:15.955+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"4c5d1618-acae-473a-b0b8-307bdaa6cade"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:37:16.076+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:37:25.955+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"4c5d1618-acae-473a-b0b8-307bdaa6cade"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:37:26.047+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:37:35.956+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"4c5d1618-acae-473a-b0b8-307bdaa6cade"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:37:36.070+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:37:45.955+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"4c5d1618-acae-473a-b0b8-307bdaa6cade"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:37:46.063+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:37:55.955+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"4c5d1618-acae-473a-b0b8-307bdaa6cade"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:37:56.049+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:38:05.955+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"4c5d1618-acae-473a-b0b8-307bdaa6cade"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:38:06.129+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:38:15.955+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"4c5d1618-acae-473a-b0b8-307bdaa6cade"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:38:16.056+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:38:25.955+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"4c5d1618-acae-473a-b0b8-307bdaa6cade"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:38:26.059+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:38:35.955+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"4c5d1618-acae-473a-b0b8-307bdaa6cade"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:38:36.049+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:38:45.956+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"4c5d1618-acae-473a-b0b8-307bdaa6cade"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:38:46.075+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:38:55.955+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"4c5d1618-acae-473a-b0b8-307bdaa6cade"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:38:56.063+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:39:05.956+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"4c5d1618-acae-473a-b0b8-307bdaa6cade"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:39:06.089+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:39:15.955+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"4c5d1618-acae-473a-b0b8-307bdaa6cade"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:39:16.051+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:39:25.955+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"4c5d1618-acae-473a-b0b8-307bdaa6cade"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:39:26.047+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:39:35.955+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"4c5d1618-acae-473a-b0b8-307bdaa6cade"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:39:36.065+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:39:45.956+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"4c5d1618-acae-473a-b0b8-307bdaa6cade"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:39:46.053+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:39:55.955+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"4c5d1618-acae-473a-b0b8-307bdaa6cade"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:39:56.080+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:40:05.955+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"4c5d1618-acae-473a-b0b8-307bdaa6cade"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:40:06.080+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:40:15.956+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"4c5d1618-acae-473a-b0b8-307bdaa6cade"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:40:16.048+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:40:25.956+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"4c5d1618-acae-473a-b0b8-307bdaa6cade"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:40:26.042+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:40:35.956+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"4c5d1618-acae-473a-b0b8-307bdaa6cade"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:40:36.040+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:40:45.956+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"4c5d1618-acae-473a-b0b8-307bdaa6cade"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:40:46.032+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:40:55.956+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"4c5d1618-acae-473a-b0b8-307bdaa6cade"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:40:56.036+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:41:05.956+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"4c5d1618-acae-473a-b0b8-307bdaa6cade"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:41:06.038+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:41:15.956+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"4c5d1618-acae-473a-b0b8-307bdaa6cade"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:41:16.069+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:41:25.956+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"4c5d1618-acae-473a-b0b8-307bdaa6cade"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:41:26.047+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:41:35.956+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"4c5d1618-acae-473a-b0b8-307bdaa6cade"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:41:36.034+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:41:45.956+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"4c5d1618-acae-473a-b0b8-307bdaa6cade"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:41:46.030+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:41:55.957+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"4c5d1618-acae-473a-b0b8-307bdaa6cade"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:41:56.110+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:42:05.956+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"4c5d1618-acae-473a-b0b8-307bdaa6cade"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:42:06.047+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:42:15.957+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"4c5d1618-acae-473a-b0b8-307bdaa6cade"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:42:16.020+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:42:25.957+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"4c5d1618-acae-473a-b0b8-307bdaa6cade"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:42:26.027+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:42:35.957+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"4c5d1618-acae-473a-b0b8-307bdaa6cade"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:42:36.039+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:42:45.956+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"4c5d1618-acae-473a-b0b8-307bdaa6cade"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:42:46.069+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:42:55.956+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"4c5d1618-acae-473a-b0b8-307bdaa6cade"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:42:56.050+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:43:05.956+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"4c5d1618-acae-473a-b0b8-307bdaa6cade"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:43:06.077+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:43:15.956+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"4c5d1618-acae-473a-b0b8-307bdaa6cade"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:43:16.060+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:43:25.956+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"4c5d1618-acae-473a-b0b8-307bdaa6cade"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:43:26.074+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:43:35.957+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"4c5d1618-acae-473a-b0b8-307bdaa6cade"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:43:36.081+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:43:45.956+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"4c5d1618-acae-473a-b0b8-307bdaa6cade"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:43:46.083+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:43:55.957+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"4c5d1618-acae-473a-b0b8-307bdaa6cade"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:43:56.148+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:44:05.957+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"4c5d1618-acae-473a-b0b8-307bdaa6cade"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:44:06.064+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:44:15.957+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"4c5d1618-acae-473a-b0b8-307bdaa6cade"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:44:16.062+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:44:25.957+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"4c5d1618-acae-473a-b0b8-307bdaa6cade"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:44:26.066+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:44:35.957+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"4c5d1618-acae-473a-b0b8-307bdaa6cade"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:44:36.071+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:44:45.957+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"4c5d1618-acae-473a-b0b8-307bdaa6cade"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:44:46.073+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:44:55.957+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"4c5d1618-acae-473a-b0b8-307bdaa6cade"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:44:56.059+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:45:05.957+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"4c5d1618-acae-473a-b0b8-307bdaa6cade"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:45:06.059+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:45:15.957+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"4c5d1618-acae-473a-b0b8-307bdaa6cade"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:45:16.075+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:45:25.957+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"4c5d1618-acae-473a-b0b8-307bdaa6cade"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:45:26.060+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:45:35.958+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"4c5d1618-acae-473a-b0b8-307bdaa6cade"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:45:36.043+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:45:45.957+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"4c5d1618-acae-473a-b0b8-307bdaa6cade"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:45:46.104+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:45:55.958+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"4c5d1618-acae-473a-b0b8-307bdaa6cade"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:45:56.043+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:46:05.957+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"4c5d1618-acae-473a-b0b8-307bdaa6cade"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:46:06.059+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:46:15.958+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"4c5d1618-acae-473a-b0b8-307bdaa6cade"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:46:16.044+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:46:25.958+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"4c5d1618-acae-473a-b0b8-307bdaa6cade"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:46:26.050+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:46:35.958+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"4c5d1618-acae-473a-b0b8-307bdaa6cade"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:46:36.044+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:46:45.957+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"4c5d1618-acae-473a-b0b8-307bdaa6cade"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:46:46.043+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:46:55.957+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"4c5d1618-acae-473a-b0b8-307bdaa6cade"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:46:56.038+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:47:05.957+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"4c5d1618-acae-473a-b0b8-307bdaa6cade"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:47:06.038+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:47:15.957+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"4c5d1618-acae-473a-b0b8-307bdaa6cade"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:47:16.037+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:47:25.957+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"4c5d1618-acae-473a-b0b8-307bdaa6cade"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:47:26.040+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:47:35.957+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"4c5d1618-acae-473a-b0b8-307bdaa6cade"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:47:36.039+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:47:45.957+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"4c5d1618-acae-473a-b0b8-307bdaa6cade"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:47:46.037+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:47:55.957+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"4c5d1618-acae-473a-b0b8-307bdaa6cade"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:47:56.058+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:48:05.958+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"4c5d1618-acae-473a-b0b8-307bdaa6cade"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:48:06.051+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:48:15.957+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"4c5d1618-acae-473a-b0b8-307bdaa6cade"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:48:16.037+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:48:25.958+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"4c5d1618-acae-473a-b0b8-307bdaa6cade"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:48:26.036+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:48:35.957+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"4c5d1618-acae-473a-b0b8-307bdaa6cade"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:48:36.029+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:48:45.957+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"4c5d1618-acae-473a-b0b8-307bdaa6cade"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:48:46.039+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:48:55.957+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"4c5d1618-acae-473a-b0b8-307bdaa6cade"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:48:56.031+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:49:05.958+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"4c5d1618-acae-473a-b0b8-307bdaa6cade"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:49:06.026+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:49:15.958+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"4c5d1618-acae-473a-b0b8-307bdaa6cade"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:49:16.028+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:49:25.957+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"4c5d1618-acae-473a-b0b8-307bdaa6cade"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:49:26.027+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:49:35.958+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"4c5d1618-acae-473a-b0b8-307bdaa6cade"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:49:36.035+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:49:45.958+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"4c5d1618-acae-473a-b0b8-307bdaa6cade"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:49:46.040+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:49:55.957+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"4c5d1618-acae-473a-b0b8-307bdaa6cade"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:49:56.045+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:50:05.958+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"4c5d1618-acae-473a-b0b8-307bdaa6cade"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:50:06.048+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:50:15.957+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"4c5d1618-acae-473a-b0b8-307bdaa6cade"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:50:16.042+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:50:25.958+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"cdb646d8-d7e9-4159-aaaf-ac48092d1795"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:50:26.063+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:50:35.958+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"cdb646d8-d7e9-4159-aaaf-ac48092d1795"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:50:36.064+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{"test://1":1}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:50:45.958+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"cdb646d8-d7e9-4159-aaaf-ac48092d1795"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:50:46.057+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{"test://1":1}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:50:55.958+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"cdb646d8-d7e9-4159-aaaf-ac48092d1795"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:50:56.057+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{"test://1":1}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:51:05.958+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"cdb646d8-d7e9-4159-aaaf-ac48092d1795"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:51:06.049+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{"test://1":1}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:51:15.958+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"cdb646d8-d7e9-4159-aaaf-ac48092d1795"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:51:16.071+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{"test://1":1}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:51:25.958+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"cdb646d8-d7e9-4159-aaaf-ac48092d1795"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:51:26.066+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{"test://1":1}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:51:35.958+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"cdb646d8-d7e9-4159-aaaf-ac48092d1795"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:51:36.047+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{"test://1":1}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:51:45.959+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"cdb646d8-d7e9-4159-aaaf-ac48092d1795"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:51:46.070+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{"test://1":1}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:51:55.958+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"cdb646d8-d7e9-4159-aaaf-ac48092d1795"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:51:56.066+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{"test://1":1}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:52:05.958+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"cdb646d8-d7e9-4159-aaaf-ac48092d1795"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:52:06.049+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{"test://1":1}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:52:15.959+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"cdb646d8-d7e9-4159-aaaf-ac48092d1795"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:52:16.051+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{"test://1":1}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:52:25.958+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"cdb646d8-d7e9-4159-aaaf-ac48092d1795"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:52:26.055+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{"test://1":1}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:52:35.959+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"cdb646d8-d7e9-4159-aaaf-ac48092d1795"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:52:36.058+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{"test://1":1}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:52:45.959+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"cdb646d8-d7e9-4159-aaaf-ac48092d1795"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:52:46.048+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{"test://1":1}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:52:55.959+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"cdb646d8-d7e9-4159-aaaf-ac48092d1795"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:52:56.055+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{"test://1":1}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:53:05.958+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"cdb646d8-d7e9-4159-aaaf-ac48092d1795"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:53:06.045+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{"test://1":1}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:53:15.958+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"cdb646d8-d7e9-4159-aaaf-ac48092d1795"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:53:16.047+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{"test://1":1}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:53:25.959+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"cdb646d8-d7e9-4159-aaaf-ac48092d1795"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:53:26.049+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{"test://1":1}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:53:35.958+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"cdb646d8-d7e9-4159-aaaf-ac48092d1795"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:53:36.066+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{"test://1":1}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:53:45.958+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"cdb646d8-d7e9-4159-aaaf-ac48092d1795"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:53:46.086+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{"test://1":1}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:53:55.958+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"cdb646d8-d7e9-4159-aaaf-ac48092d1795"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:53:56.057+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{"test://1":1}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:54:05.959+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"cdb646d8-d7e9-4159-aaaf-ac48092d1795"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:54:06.065+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{"test://1":1}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:54:15.959+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"cdb646d8-d7e9-4159-aaaf-ac48092d1795"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:54:16.058+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{"test://1":1}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:54:25.959+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"cdb646d8-d7e9-4159-aaaf-ac48092d1795"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:54:26.064+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{"test://1":1}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:54:35.959+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"cdb646d8-d7e9-4159-aaaf-ac48092d1795"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:54:36.051+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{"test://1":1}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:54:45.959+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"cdb646d8-d7e9-4159-aaaf-ac48092d1795"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:54:46.052+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{"test://1":1}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:54:55.959+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"cdb646d8-d7e9-4159-aaaf-ac48092d1795"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:54:56.102+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{"test://1":1}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:55:05.959+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"cdb646d8-d7e9-4159-aaaf-ac48092d1795"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:55:06.066+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{"test://1":1}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:55:15.959+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"cdb646d8-d7e9-4159-aaaf-ac48092d1795"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:55:16.071+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{"test://1":1}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:55:25.959+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"cdb646d8-d7e9-4159-aaaf-ac48092d1795"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:55:26.073+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{"test://1":1}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:55:35.960+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"cdb646d8-d7e9-4159-aaaf-ac48092d1795"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:55:36.066+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:55:45.960+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"cdb646d8-d7e9-4159-aaaf-ac48092d1795"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:55:46.104+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:55:55.960+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"cdb646d8-d7e9-4159-aaaf-ac48092d1795"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:55:56.095+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:56:05.959+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"cdb646d8-d7e9-4159-aaaf-ac48092d1795"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:56:06.124+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:56:15.959+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"cdb646d8-d7e9-4159-aaaf-ac48092d1795"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:56:16.309+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:56:25.959+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"cdb646d8-d7e9-4159-aaaf-ac48092d1795"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:56:26.088+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:56:35.959+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"cdb646d8-d7e9-4159-aaaf-ac48092d1795"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:56:36.172+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:56:45.959+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"cdb646d8-d7e9-4159-aaaf-ac48092d1795"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:56:46.083+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:56:55.959+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"cdb646d8-d7e9-4159-aaaf-ac48092d1795"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:56:56.130+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:57:05.959+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"cdb646d8-d7e9-4159-aaaf-ac48092d1795"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:57:06.256+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:57:15.959+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"cdb646d8-d7e9-4159-aaaf-ac48092d1795"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:57:16.082+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:57:25.959+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"cdb646d8-d7e9-4159-aaaf-ac48092d1795"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:57:26.079+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:57:35.979+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"cdb646d8-d7e9-4159-aaaf-ac48092d1795"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:57:36.247+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{"test://1":1}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:57:45.994+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"cdb646d8-d7e9-4159-aaaf-ac48092d1795"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:57:46.111+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{"test://1":1}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:57:56.001+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"cdb646d8-d7e9-4159-aaaf-ac48092d1795"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:57:56.159+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{"test://1":1}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:58:06.005+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"cdb646d8-d7e9-4159-aaaf-ac48092d1795"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:58:06.142+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{"test://1":1}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:58:16.007+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"cdb646d8-d7e9-4159-aaaf-ac48092d1795"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:58:16.144+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{"test://1":1}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:58:26.008+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"cdb646d8-d7e9-4159-aaaf-ac48092d1795"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:58:26.107+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{"test://1":1}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:58:36.009+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"cdb646d8-d7e9-4159-aaaf-ac48092d1795"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:58:36.125+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{"test://1":1}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:58:46.009+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"cdb646d8-d7e9-4159-aaaf-ac48092d1795"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:58:46.109+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{"test://1":1}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:58:56.010+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"cdb646d8-d7e9-4159-aaaf-ac48092d1795"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:58:56.189+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{"test://1":1}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:59:06.010+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"cdb646d8-d7e9-4159-aaaf-ac48092d1795"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:59:06.149+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{"test://1":1}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:59:16.010+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"cdb646d8-d7e9-4159-aaaf-ac48092d1795"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:59:16.111+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{"test://1":1}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:59:26.010+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"cdb646d8-d7e9-4159-aaaf-ac48092d1795"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:59:26.107+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{"test://1":1}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:59:36.011+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"cdb646d8-d7e9-4159-aaaf-ac48092d1795"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:59:36.105+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{"test://1":1}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:59:46.012+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"cdb646d8-d7e9-4159-aaaf-ac48092d1795"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:59:46.124+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{"test://1":1}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:59:56.012+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"cdb646d8-d7e9-4159-aaaf-ac48092d1795"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T01:59:56.103+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{"test://1":1}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:00:06.012+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"cdb646d8-d7e9-4159-aaaf-ac48092d1795"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:00:06.113+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{"test://1":1}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:00:16.012+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"cdb646d8-d7e9-4159-aaaf-ac48092d1795"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:00:16.171+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{"test://1":1}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:00:26.012+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"cdb646d8-d7e9-4159-aaaf-ac48092d1795"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:00:26.118+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{"test://1":1}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:00:36.012+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"cdb646d8-d7e9-4159-aaaf-ac48092d1795"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:00:36.126+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{"test://1":1}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:00:46.012+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"cdb646d8-d7e9-4159-aaaf-ac48092d1795"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:00:46.131+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{"test://1":1}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:00:56.012+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"cdb646d8-d7e9-4159-aaaf-ac48092d1795"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:00:56.110+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{"test://1":1}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:01:06.012+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"cdb646d8-d7e9-4159-aaaf-ac48092d1795"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:01:06.108+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{"test://1":1}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:01:16.012+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"cdb646d8-d7e9-4159-aaaf-ac48092d1795"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:01:16.111+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{"test://1":1}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:01:26.013+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"cdb646d8-d7e9-4159-aaaf-ac48092d1795"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:01:26.131+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{"test://1":1}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:01:36.013+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"cdb646d8-d7e9-4159-aaaf-ac48092d1795"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:01:36.207+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{"test://1":1}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:01:46.014+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"cdb646d8-d7e9-4159-aaaf-ac48092d1795"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:01:46.195+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{"test://1":1}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:01:56.014+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"cdb646d8-d7e9-4159-aaaf-ac48092d1795"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:01:56.231+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{"test://1":1}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:02:06.013+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"cdb646d8-d7e9-4159-aaaf-ac48092d1795"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:02:06.125+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{"test://1":1}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:02:16.014+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"cdb646d8-d7e9-4159-aaaf-ac48092d1795"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:02:16.170+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{"test://1":1}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:02:26.014+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"cdb646d8-d7e9-4159-aaaf-ac48092d1795"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:02:26.133+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{"test://1":1}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:02:36.014+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"cdb646d8-d7e9-4159-aaaf-ac48092d1795"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:02:36.150+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:02:46.014+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"cdb646d8-d7e9-4159-aaaf-ac48092d1795"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:02:46.184+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:02:56.015+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"cdb646d8-d7e9-4159-aaaf-ac48092d1795"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:02:56.164+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:03:06.014+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"cdb646d8-d7e9-4159-aaaf-ac48092d1795"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:03:06.160+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:03:16.015+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"cdb646d8-d7e9-4159-aaaf-ac48092d1795"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:03:16.156+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:03:26.015+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"cdb646d8-d7e9-4159-aaaf-ac48092d1795"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:03:26.140+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:03:36.015+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"cdb646d8-d7e9-4159-aaaf-ac48092d1795"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:03:36.141+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:03:46.015+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"cdb646d8-d7e9-4159-aaaf-ac48092d1795"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:03:46.144+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:03:56.015+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"cdb646d8-d7e9-4159-aaaf-ac48092d1795"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:03:56.142+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:04:06.015+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"cdb646d8-d7e9-4159-aaaf-ac48092d1795"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:04:06.138+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:04:16.016+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"cdb646d8-d7e9-4159-aaaf-ac48092d1795"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:04:16.127+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:04:26.016+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"cdb646d8-d7e9-4159-aaaf-ac48092d1795"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:04:26.138+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:04:36.016+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"cdb646d8-d7e9-4159-aaaf-ac48092d1795"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:04:36.152+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:04:46.016+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"cdb646d8-d7e9-4159-aaaf-ac48092d1795"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:04:46.131+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:04:56.016+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"cdb646d8-d7e9-4159-aaaf-ac48092d1795"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:04:56.131+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:05:06.016+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"cdb646d8-d7e9-4159-aaaf-ac48092d1795"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:05:06.165+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:05:16.017+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"cdb646d8-d7e9-4159-aaaf-ac48092d1795"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:05:16.120+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:05:26.017+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"cdb646d8-d7e9-4159-aaaf-ac48092d1795"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:05:26.125+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:05:36.017+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"51583246-ba37-4592-8ca7-5c8e7b635e75"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:05:36.135+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{"test://1":1}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:05:46.017+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"51583246-ba37-4592-8ca7-5c8e7b635e75"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:05:46.126+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{"test://1":1}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:05:56.018+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"51583246-ba37-4592-8ca7-5c8e7b635e75"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:05:56.150+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{"test://1":1}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:06:06.017+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"51583246-ba37-4592-8ca7-5c8e7b635e75"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:06:06.163+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{"test://1":1}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:06:16.018+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"51583246-ba37-4592-8ca7-5c8e7b635e75"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:06:16.135+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{"test://1":1}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:06:26.018+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"51583246-ba37-4592-8ca7-5c8e7b635e75"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:06:26.192+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{"test://1":1}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:06:36.018+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"51583246-ba37-4592-8ca7-5c8e7b635e75"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:06:36.129+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{"test://1":1}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:06:46.018+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"51583246-ba37-4592-8ca7-5c8e7b635e75"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:06:46.206+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{"test://1":1}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:06:56.018+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"51583246-ba37-4592-8ca7-5c8e7b635e75"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:06:56.147+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{"test://1":1}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:07:06.018+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"51583246-ba37-4592-8ca7-5c8e7b635e75"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:07:06.160+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{"test://1":1}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:07:16.018+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"51583246-ba37-4592-8ca7-5c8e7b635e75"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:07:16.180+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{"test://1":1}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:07:26.019+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"51583246-ba37-4592-8ca7-5c8e7b635e75"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:07:26.151+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{"test://1":1}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:07:36.019+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"30b9e366-902a-4575-acfb-32187e289bb2"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:07:36.141+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{"test://1":1}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:07:46.019+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"30b9e366-902a-4575-acfb-32187e289bb2"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:07:46.153+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{"test://1":1}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:07:56.019+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"30b9e366-902a-4575-acfb-32187e289bb2"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:07:56.135+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{"test://1":1}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:08:06.019+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"30b9e366-902a-4575-acfb-32187e289bb2"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:08:06.120+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{"test://1":1}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:08:16.019+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"30b9e366-902a-4575-acfb-32187e289bb2"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:08:16.113+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{"test://1":1}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:08:26.019+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"30b9e366-902a-4575-acfb-32187e289bb2"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:08:26.114+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{"test://1":1}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:08:36.019+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"30b9e366-902a-4575-acfb-32187e289bb2"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:08:36.127+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{"test://1":1}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:08:46.020+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"30b9e366-902a-4575-acfb-32187e289bb2"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:08:46.101+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{"test://1":1}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:08:56.019+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"30b9e366-902a-4575-acfb-32187e289bb2"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:08:56.124+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{"test://1":1}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:09:06.020+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"30b9e366-902a-4575-acfb-32187e289bb2"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:09:06.107+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{"test://1":1}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:09:16.020+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"30b9e366-902a-4575-acfb-32187e289bb2"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:09:16.104+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{"test://1":1}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:09:26.020+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"30b9e366-902a-4575-acfb-32187e289bb2"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:09:26.124+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{"test://1":1}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:09:36.020+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"30b9e366-902a-4575-acfb-32187e289bb2"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:09:36.129+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{"test://1":1}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:09:46.020+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"30b9e366-902a-4575-acfb-32187e289bb2"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:09:46.156+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{"test://1":1}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:09:56.020+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"30b9e366-902a-4575-acfb-32187e289bb2"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:09:56.124+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{"test://1":1}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:10:06.020+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"30b9e366-902a-4575-acfb-32187e289bb2"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:10:06.119+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{"test://1":1}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:10:16.021+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"30b9e366-902a-4575-acfb-32187e289bb2"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:10:16.159+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{"test://1":1}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:10:26.021+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"30b9e366-902a-4575-acfb-32187e289bb2"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:10:26.139+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{"test://1":1}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:10:36.021+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"30b9e366-902a-4575-acfb-32187e289bb2"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:10:36.132+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{"test://1":1}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:10:46.021+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"30b9e366-902a-4575-acfb-32187e289bb2"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:10:46.147+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{"test://1":1}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:10:56.022+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"30b9e366-902a-4575-acfb-32187e289bb2"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:10:56.181+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{"test://1":1}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:11:06.021+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"30b9e366-902a-4575-acfb-32187e289bb2"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:11:06.159+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{"test://1":1}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:11:16.022+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"30b9e366-902a-4575-acfb-32187e289bb2"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:11:16.555+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{"test://1":1}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:11:26.022+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"30b9e366-902a-4575-acfb-32187e289bb2"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:11:26.199+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{"test://1":1}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:11:36.022+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"30b9e366-902a-4575-acfb-32187e289bb2"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:11:36.185+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{"test://1":1}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:11:46.022+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"30b9e366-902a-4575-acfb-32187e289bb2"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:11:46.198+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{"test://1":1}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:11:56.022+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"30b9e366-902a-4575-acfb-32187e289bb2"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:11:56.147+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:12:06.022+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"30b9e366-902a-4575-acfb-32187e289bb2"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:12:06.144+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:12:16.023+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"30b9e366-902a-4575-acfb-32187e289bb2"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:12:16.144+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:12:26.024+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"30b9e366-902a-4575-acfb-32187e289bb2"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:12:26.131+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:12:36.023+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"30b9e366-902a-4575-acfb-32187e289bb2"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:12:36.146+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:12:46.023+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"30b9e366-902a-4575-acfb-32187e289bb2"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:12:46.162+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:12:56.023+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"30b9e366-902a-4575-acfb-32187e289bb2"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:12:56.205+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:13:06.023+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"c71ea1ad-15f9-4607-a27a-2a2036964dab"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:13:06.127+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{"test://1":1}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:13:16.024+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"c71ea1ad-15f9-4607-a27a-2a2036964dab"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:13:16.148+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{"test://1":1}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:13:26.024+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"c71ea1ad-15f9-4607-a27a-2a2036964dab"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:13:26.123+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{"test://1":1}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:13:36.024+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"c71ea1ad-15f9-4607-a27a-2a2036964dab"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:13:36.154+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{"test://1":1}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:13:46.024+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"c71ea1ad-15f9-4607-a27a-2a2036964dab"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:13:46.143+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{"test://1":1}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:13:56.024+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"c71ea1ad-15f9-4607-a27a-2a2036964dab"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:13:56.143+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{"test://1":1}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:14:06.025+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"c71ea1ad-15f9-4607-a27a-2a2036964dab"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:14:06.222+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{"test://1":1}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:14:16.025+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"c71ea1ad-15f9-4607-a27a-2a2036964dab"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:14:16.185+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{"test://1":1}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:14:26.025+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"8168b3f1-08f1-444a-93d2-1fbc378df13a"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:14:26.151+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{"test://1":1}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:14:36.025+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"8168b3f1-08f1-444a-93d2-1fbc378df13a"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:14:36.175+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{"test://1":1}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:14:46.025+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"8168b3f1-08f1-444a-93d2-1fbc378df13a"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:14:46.169+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{"test://1":1}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:14:56.025+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"8168b3f1-08f1-444a-93d2-1fbc378df13a"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:14:56.164+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{"test://1":1}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:15:06.026+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"8168b3f1-08f1-444a-93d2-1fbc378df13a"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:15:06.209+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{"test://1":1}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:15:16.026+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"8168b3f1-08f1-444a-93d2-1fbc378df13a"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:15:16.228+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{"test://1":1}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:15:26.026+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"8168b3f1-08f1-444a-93d2-1fbc378df13a"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:15:26.202+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{"test://1":1}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:15:36.026+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"8168b3f1-08f1-444a-93d2-1fbc378df13a"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:15:36.173+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{"test://1":1}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:15:46.026+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"8168b3f1-08f1-444a-93d2-1fbc378df13a"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:15:46.235+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{"test://1":1}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:15:56.027+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"8168b3f1-08f1-444a-93d2-1fbc378df13a"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:15:56.340+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{"test://1":1}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:16:06.027+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"8062be5f-b77b-41da-a8fe-6a885ad866ba"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:16:06.272+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{"test://1":1}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:16:16.027+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"8062be5f-b77b-41da-a8fe-6a885ad866ba"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:16:16.205+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{"test://1":1}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:16:26.027+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"8062be5f-b77b-41da-a8fe-6a885ad866ba"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:16:26.230+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{"test://1":1}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:16:36.027+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"8062be5f-b77b-41da-a8fe-6a885ad866ba"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:16:36.194+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{"test://1":1}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:16:46.027+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"8062be5f-b77b-41da-a8fe-6a885ad866ba"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:16:46.141+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{"test://1":1}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:16:56.027+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"8062be5f-b77b-41da-a8fe-6a885ad866ba"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:16:56.150+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{"test://1":1}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:17:06.028+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"8062be5f-b77b-41da-a8fe-6a885ad866ba"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:17:06.133+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{"test://1":1}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:17:16.028+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"8062be5f-b77b-41da-a8fe-6a885ad866ba"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:17:16.147+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{"test://1":1}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:17:26.029+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"8062be5f-b77b-41da-a8fe-6a885ad866ba"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:17:26.352+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{"test://1":1}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:17:36.028+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"8062be5f-b77b-41da-a8fe-6a885ad866ba"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:17:36.143+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{"test://1":1}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:17:46.028+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"8062be5f-b77b-41da-a8fe-6a885ad866ba"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:17:46.144+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{"test://1":1}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:17:56.028+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"8062be5f-b77b-41da-a8fe-6a885ad866ba"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:17:56.126+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{"test://1":1}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:18:06.029+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"8062be5f-b77b-41da-a8fe-6a885ad866ba"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:18:06.157+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{"test://1":1}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:18:16.028+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"8062be5f-b77b-41da-a8fe-6a885ad866ba"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:18:16.123+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{"test://1":1}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:18:26.028+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"8062be5f-b77b-41da-a8fe-6a885ad866ba"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:18:26.122+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{"test://1":1}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:18:36.028+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"8062be5f-b77b-41da-a8fe-6a885ad866ba"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:18:36.144+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{"test://1":1}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:18:46.028+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"8062be5f-b77b-41da-a8fe-6a885ad866ba"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:18:46.131+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{"test://1":1}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:18:56.028+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"8062be5f-b77b-41da-a8fe-6a885ad866ba"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:18:56.120+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{"test://1":1}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:19:06.029+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"8062be5f-b77b-41da-a8fe-6a885ad866ba"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:19:06.143+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{"test://1":1}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:19:16.029+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"8062be5f-b77b-41da-a8fe-6a885ad866ba"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:19:16.126+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{"test://1":1}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:19:26.029+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"8062be5f-b77b-41da-a8fe-6a885ad866ba"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:19:26.123+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{"test://1":1}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:19:36.029+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"8062be5f-b77b-41da-a8fe-6a885ad866ba"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:19:36.126+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{"test://1":1}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:19:46.030+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"8062be5f-b77b-41da-a8fe-6a885ad866ba"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:19:46.128+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{"test://1":1}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:19:56.030+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"8062be5f-b77b-41da-a8fe-6a885ad866ba"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:19:56.201+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{"test://1":1}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:20:06.030+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"8062be5f-b77b-41da-a8fe-6a885ad866ba"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:20:06.130+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{"test://1":1}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:20:16.030+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"8062be5f-b77b-41da-a8fe-6a885ad866ba"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:20:16.277+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{"test://1":1}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:20:26.030+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"8062be5f-b77b-41da-a8fe-6a885ad866ba"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:20:26.193+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{"test://1":1}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:20:36.030+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"8062be5f-b77b-41da-a8fe-6a885ad866ba"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:20:36.215+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{"test://1":1}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:20:46.031+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"8062be5f-b77b-41da-a8fe-6a885ad866ba"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:20:46.144+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{"test://1":1}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:20:56.030+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"8062be5f-b77b-41da-a8fe-6a885ad866ba"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:20:56.131+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{"test://1":1}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:21:06.031+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"8062be5f-b77b-41da-a8fe-6a885ad866ba"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:21:06.144+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:21:16.031+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"8062be5f-b77b-41da-a8fe-6a885ad866ba"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:21:16.138+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:21:26.031+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"8062be5f-b77b-41da-a8fe-6a885ad866ba"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:21:26.128+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:21:36.031+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"8062be5f-b77b-41da-a8fe-6a885ad866ba"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:21:36.140+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:21:46.031+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"8062be5f-b77b-41da-a8fe-6a885ad866ba"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:21:46.125+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T02:21:54.655+0800","caller":"logic/main.go:121","msg":"Shutdown Server ..."}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T08:55:31.878+0800","caller":"logger/zap.go:64","msg":"init logger success"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T08:55:31.879+0800","caller":"logic/main.go:95","msg":"Grpc Service Success"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T08:55:31.887+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T08:55:31.896+0800","caller":"logic/main.go:91","msg":"Register Service Success"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T08:55:41.888+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T08:55:51.887+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T08:56:01.888+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"7094969d-b458-47be-8780-ef980f54fcc4"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T08:56:01.959+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{"test://1":1}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T08:56:11.887+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"7094969d-b458-47be-8780-ef980f54fcc4"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T08:56:11.959+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{"test://1":1}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T08:56:21.888+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"7094969d-b458-47be-8780-ef980f54fcc4"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T08:56:21.949+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{"test://1":1}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T08:56:31.888+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"7094969d-b458-47be-8780-ef980f54fcc4"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T08:56:31.976+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{"test://1":1}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T08:56:41.887+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"7094969d-b458-47be-8780-ef980f54fcc4"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T08:56:41.946+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{"test://1":1}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T08:56:51.887+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"7094969d-b458-47be-8780-ef980f54fcc4"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T08:56:51.950+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{"test://1":1}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T08:57:01.887+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"7094969d-b458-47be-8780-ef980f54fcc4"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T08:57:01.944+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{"test://1":1}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T08:57:11.888+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"7094969d-b458-47be-8780-ef980f54fcc4"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T08:57:11.958+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{"test://1":1}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T08:57:21.888+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"7094969d-b458-47be-8780-ef980f54fcc4"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T08:57:21.965+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{"test://1":1}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T08:57:31.887+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"7094969d-b458-47be-8780-ef980f54fcc4"}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T08:57:31.968+0800","caller":"logic/replicant.go:263","msg":"loadOnline","map":{"test://1":1}}
{"level":"\u001b[34mINFO\u001b[0m","time":"2024-04-25T08:57:41.887+0800","caller":"logic/replicant.go:250","msg":"loadOnline","hostName":"7094969d-b458-47be-8780-ef980f54fcc4"}