-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsugar.log
2486 lines (2486 loc) · 781 KB
/
sugar.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
{"v":0,"name":"sugar","msg":"Lend me some sugar, I am your neighbor.","level":30,"hostname":"Tylers-MBP.attlocal.net","pid":71478,"time":"2022-05-13T16:55:58.506696Z","target":"sugar","line":101,"file":"src/main.rs"}
{"v":0,"name":"sugar","msg":"Cache exists, loading...","level":30,"hostname":"Tylers-MBP.attlocal.net","pid":71478,"time":"2022-05-13T16:55:58.507224Z","target":"sugar_cli::cache","line":133,"file":"src/cache.rs"}
{"v":0,"name":"sugar","msg":"checkout waiting for idle connection: (\"https\", api.devnet.solana.com)","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71478,"time":"2022-05-13T16:55:58.511478Z","target":"hyper::client::pool","line":636,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/client/pool.rs"}
{"v":0,"name":"sugar","msg":"Http::connect; scheme=Some(\"https\"), host=Some(\"api.devnet.solana.com\"), port=None","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71478,"time":"2022-05-13T16:55:58.511563Z","target":"hyper::client::connect::http","line":277,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/client/connect/http.rs"}
{"v":0,"name":"sugar","msg":"resolving host=\"api.devnet.solana.com\"","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":71478,"time":"2022-05-13T16:55:58.511647Z","target":"hyper::client::connect::dns","line":122,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/client/connect/dns.rs"}
{"v":0,"name":"sugar","msg":"connecting to 147.28.133.107:443","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":71478,"time":"2022-05-13T16:55:58.562313Z","target":"hyper::client::connect::http","line":531,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/client/connect/http.rs"}
{"v":0,"name":"sugar","msg":"connected to 147.28.133.107:443","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":71478,"time":"2022-05-13T16:55:58.67152Z","target":"hyper::client::connect::http","line":534,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/client/connect/http.rs"}
{"v":0,"name":"sugar","msg":"client handshake Http1","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71478,"time":"2022-05-13T16:55:59.123014Z","target":"hyper::client::conn","line":873,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/client/conn.rs"}
{"v":0,"name":"sugar","msg":"handshake complete, spawning background dispatcher task","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71478,"time":"2022-05-13T16:55:59.123083Z","target":"hyper::client::client","line":486,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/client/client.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Busy }","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71478,"time":"2022-05-13T16:55:59.123175Z","target":"hyper::proto::h1::conn","line":731,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"checkout dropped for (\"https\", api.devnet.solana.com)","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71478,"time":"2022-05-13T16:55:59.123207Z","target":"hyper::client::pool","line":678,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/client/pool.rs"}
{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71478,"time":"2022-05-13T16:55:59.123276Z","target":"hyper::proto::h1::role","line":105,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs"}
{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(60))","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71478,"time":"2022-05-13T16:55:59.123318Z","target":"hyper::proto::h1::role","line":1046,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs"}
{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71478,"time":"2022-05-13T16:55:59.123362Z","target":"hyper::proto::h1::role","line":105,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs"}
{"v":0,"name":"sugar","msg":"sized write, len = 60","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71478,"time":"2022-05-13T16:55:59.1234Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/encode.rs"}
{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71478,"time":"2022-05-13T16:55:59.123423Z","target":"hyper::proto::h1::io","line":569,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/io.rs","self.len":113,"buf.len":60}
{"v":0,"name":"sugar","msg":"flushed 173 bytes","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":71478,"time":"2022-05-13T16:55:59.123509Z","target":"hyper::proto::h1::io","line":334,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/io.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71478,"time":"2022-05-13T16:55:59.123531Z","target":"hyper::proto::h1::conn","line":731,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71478,"time":"2022-05-13T16:55:59.232962Z","target":"hyper::proto::h1::conn","line":188,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"received 465 bytes","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71478,"time":"2022-05-13T16:55:59.233068Z","target":"hyper::proto::h1::io","line":261,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/io.rs"}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71478,"time":"2022-05-13T16:55:59.2331Z","target":"hyper::proto::h1::role","line":74,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs"}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71478,"time":"2022-05-13T16:55:59.233138Z","target":"hyper::proto::h1::role","line":908,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs","bytes":465}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(381)","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71478,"time":"2022-05-13T16:55:59.233175Z","target":"hyper::proto::h1::role","line":917,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs"}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71478,"time":"2022-05-13T16:55:59.233242Z","target":"hyper::proto::h1::role","line":74,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs"}
{"v":0,"name":"sugar","msg":"parsed 11 headers","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":71478,"time":"2022-05-13T16:55:59.233271Z","target":"hyper::proto::h1::io","line":205,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/io.rs"}
{"v":0,"name":"sugar","msg":"incoming body is content-length (84 bytes)","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":71478,"time":"2022-05-13T16:55:59.233292Z","target":"hyper::proto::h1::conn","line":217,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"decode; state=Length(84)","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71478,"time":"2022-05-13T16:55:59.233344Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/decode.rs"}
{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":71478,"time":"2022-05-13T16:55:59.233377Z","target":"hyper::proto::h1::conn","line":293,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71478,"time":"2022-05-13T16:55:59.233413Z","target":"hyper::proto::h1::conn","line":467,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71478,"time":"2022-05-13T16:55:59.233447Z","target":"hyper::proto::h1::conn","line":731,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71478,"time":"2022-05-13T16:55:59.233471Z","target":"hyper::proto::h1::conn","line":731,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", api.devnet.solana.com)","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71478,"time":"2022-05-13T16:55:59.233519Z","target":"hyper::client::pool","line":329,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/client/pool.rs"}
{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":71478,"time":"2022-05-13T16:55:59.23355Z","target":"hyper::client::pool","line":376,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/client/pool.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71478,"time":"2022-05-13T16:55:59.233811Z","target":"hyper::proto::h1::conn","line":731,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"take? (\"https\", api.devnet.solana.com): expiration = Some(90s)","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71478,"time":"2022-05-13T16:55:59.233977Z","target":"hyper::client::pool","line":610,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/client/pool.rs"}
{"v":0,"name":"sugar","msg":"reuse idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":71478,"time":"2022-05-13T16:55:59.234036Z","target":"hyper::client::pool","line":250,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/client/pool.rs"}
{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71478,"time":"2022-05-13T16:55:59.234095Z","target":"hyper::proto::h1::role","line":105,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs"}
{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(177))","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71478,"time":"2022-05-13T16:55:59.234131Z","target":"hyper::proto::h1::role","line":1046,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs"}
{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71478,"time":"2022-05-13T16:55:59.23416Z","target":"hyper::proto::h1::role","line":105,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs"}
{"v":0,"name":"sugar","msg":"sized write, len = 177","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71478,"time":"2022-05-13T16:55:59.234188Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/encode.rs"}
{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71478,"time":"2022-05-13T16:55:59.23421Z","target":"hyper::proto::h1::io","line":569,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/io.rs","buf.len":177,"self.len":114}
{"v":0,"name":"sugar","msg":"flushed 291 bytes","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":71478,"time":"2022-05-13T16:55:59.234353Z","target":"hyper::proto::h1::io","line":334,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/io.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71478,"time":"2022-05-13T16:55:59.234403Z","target":"hyper::proto::h1::conn","line":731,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"idle interval checking for expired","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71478,"time":"2022-05-13T16:55:59.234477Z","target":"hyper::client::pool","line":764,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/client/pool.rs"}
{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71478,"time":"2022-05-13T16:55:59.34297Z","target":"hyper::proto::h1::conn","line":188,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"received 1429 bytes","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71478,"time":"2022-05-13T16:55:59.343046Z","target":"hyper::proto::h1::io","line":261,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/io.rs"}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71478,"time":"2022-05-13T16:55:59.343067Z","target":"hyper::proto::h1::role","line":74,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs"}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71478,"time":"2022-05-13T16:55:59.343088Z","target":"hyper::proto::h1::role","line":908,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs","bytes":1429}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(383)","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71478,"time":"2022-05-13T16:55:59.343108Z","target":"hyper::proto::h1::role","line":917,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs"}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71478,"time":"2022-05-13T16:55:59.343134Z","target":"hyper::proto::h1::role","line":74,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs"}
{"v":0,"name":"sugar","msg":"parsed 11 headers","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":71478,"time":"2022-05-13T16:55:59.343152Z","target":"hyper::proto::h1::io","line":205,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/io.rs"}
{"v":0,"name":"sugar","msg":"incoming body is content-length (1046 bytes)","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":71478,"time":"2022-05-13T16:55:59.343165Z","target":"hyper::proto::h1::conn","line":217,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"decode; state=Length(1046)","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71478,"time":"2022-05-13T16:55:59.343188Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/decode.rs"}
{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":71478,"time":"2022-05-13T16:55:59.343202Z","target":"hyper::proto::h1::conn","line":293,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71478,"time":"2022-05-13T16:55:59.343238Z","target":"hyper::proto::h1::conn","line":467,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71478,"time":"2022-05-13T16:55:59.34326Z","target":"hyper::proto::h1::conn","line":731,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71478,"time":"2022-05-13T16:55:59.343276Z","target":"hyper::proto::h1::conn","line":731,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", api.devnet.solana.com)","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71478,"time":"2022-05-13T16:55:59.343301Z","target":"hyper::client::pool","line":329,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/client/pool.rs"}
{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":71478,"time":"2022-05-13T16:55:59.343317Z","target":"hyper::client::pool","line":376,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/client/pool.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71478,"time":"2022-05-13T16:55:59.343426Z","target":"hyper::proto::h1::conn","line":731,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
s"}
{"v":0,"name":"sugar","msg":"Minting NFT from candy machine: 7GKdrQvstf78sWEM4qBuZEYisbktYCgjSS76XarS9iBk","level":30,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:19.048936Z","target":"sugar_cli::mint::process","line":83,"file":"src/mint/process.rs"}
{"v":0,"name":"sugar","msg":"Candy machine program id: cndy3Z4yapfJBmL3ShUp5exZKqR3z33thTzeNMm2gRZ","level":30,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:19.04897Z","target":"sugar_cli::mint::process","line":84,"file":"src/mint/process.rs"}
{"v":0,"name":"sugar","msg":"checkout waiting for idle connection: (\"https\", api.devnet.solana.com)","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:19.050205Z","target":"hyper::client::pool","line":636,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/client/pool.rs"}
{"v":0,"name":"sugar","msg":"Http::connect; scheme=Some(\"https\"), host=Some(\"api.devnet.solana.com\"), port=None","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:19.050272Z","target":"hyper::client::connect::http","line":277,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/client/connect/http.rs"}
{"v":0,"name":"sugar","msg":"resolving host=\"api.devnet.solana.com\"","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:19.050455Z","target":"hyper::client::connect::dns","line":122,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/client/connect/dns.rs"}
{"v":0,"name":"sugar","msg":"connecting to 147.75.42.217:443","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:19.052618Z","target":"hyper::client::connect::http","line":531,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/client/connect/http.rs"}
{"v":0,"name":"sugar","msg":"connected to 147.75.42.217:443","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:19.294722Z","target":"hyper::client::connect::http","line":534,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/client/connect/http.rs"}
{"v":0,"name":"sugar","msg":"client handshake Http1","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:20.075638Z","target":"hyper::client::conn","line":873,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/client/conn.rs"}
{"v":0,"name":"sugar","msg":"handshake complete, spawning background dispatcher task","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:20.075669Z","target":"hyper::client::client","line":486,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/client/client.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Busy }","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:20.075707Z","target":"hyper::proto::h1::conn","line":731,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"checkout dropped for (\"https\", api.devnet.solana.com)","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:20.075725Z","target":"hyper::client::pool","line":678,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/client/pool.rs"}
{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:20.075769Z","target":"hyper::proto::h1::role","line":105,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs"}
{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(83))","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:20.075788Z","target":"hyper::proto::h1::role","line":1046,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs"}
{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:20.075802Z","target":"hyper::proto::h1::role","line":105,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs"}
{"v":0,"name":"sugar","msg":"sized write, len = 83","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:20.075815Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/encode.rs"}
{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:20.075827Z","target":"hyper::proto::h1::io","line":569,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/io.rs","buf.len":83,"self.len":113}
{"v":0,"name":"sugar","msg":"flushed 196 bytes","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:20.075879Z","target":"hyper::proto::h1::io","line":334,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/io.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:20.075894Z","target":"hyper::proto::h1::conn","line":731,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:20.318809Z","target":"hyper::proto::h1::conn","line":188,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"received 423 bytes","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:20.31887Z","target":"hyper::proto::h1::io","line":261,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/io.rs"}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:20.318887Z","target":"hyper::proto::h1::role","line":74,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs"}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:20.318904Z","target":"hyper::proto::h1::role","line":908,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs","bytes":423}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(381)","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:20.31892Z","target":"hyper::proto::h1::role","line":917,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs"}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:20.318941Z","target":"hyper::proto::h1::role","line":74,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs"}
{"v":0,"name":"sugar","msg":"parsed 11 headers","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:20.318956Z","target":"hyper::proto::h1::io","line":205,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/io.rs"}
{"v":0,"name":"sugar","msg":"incoming body is content-length (42 bytes)","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:20.318966Z","target":"hyper::proto::h1::conn","line":217,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"decode; state=Length(42)","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:20.318982Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/decode.rs"}
{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:20.318994Z","target":"hyper::proto::h1::conn","line":293,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:20.319011Z","target":"hyper::proto::h1::conn","line":467,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:20.319028Z","target":"hyper::proto::h1::conn","line":731,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:20.319043Z","target":"hyper::proto::h1::conn","line":731,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", api.devnet.solana.com)","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:20.319064Z","target":"hyper::client::pool","line":329,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/client/pool.rs"}
{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:20.319077Z","target":"hyper::client::pool","line":376,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/client/pool.rs"}
{"v":0,"name":"sugar","msg":"checkout waiting for idle connection: (\"https\", api.devnet.solana.com)","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:20.319767Z","target":"hyper::client::pool","line":636,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/client/pool.rs"}
{"v":0,"name":"sugar","msg":"Http::connect; scheme=Some(\"https\"), host=Some(\"api.devnet.solana.com\"), port=None","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:20.319827Z","target":"hyper::client::connect::http","line":277,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/client/connect/http.rs"}
{"v":0,"name":"sugar","msg":"resolving host=\"api.devnet.solana.com\"","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:20.319914Z","target":"hyper::client::connect::dns","line":122,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/client/connect/dns.rs"}
{"v":0,"name":"sugar","msg":"connecting to 147.75.42.217:443","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:20.322143Z","target":"hyper::client::connect::http","line":531,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/client/connect/http.rs"}
{"v":0,"name":"sugar","msg":"connected to 147.75.42.217:443","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:20.556899Z","target":"hyper::client::connect::http","line":534,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/client/connect/http.rs"}
{"v":0,"name":"sugar","msg":"client handshake Http1","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:21.312652Z","target":"hyper::client::conn","line":873,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/client/conn.rs"}
{"v":0,"name":"sugar","msg":"handshake complete, spawning background dispatcher task","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:21.312701Z","target":"hyper::client::client","line":486,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/client/client.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Busy }","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:21.312753Z","target":"hyper::proto::h1::conn","line":731,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"checkout dropped for (\"https\", api.devnet.solana.com)","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:21.312778Z","target":"hyper::client::pool","line":678,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/client/pool.rs"}
{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:21.312816Z","target":"hyper::proto::h1::role","line":105,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs"}
{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(60))","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:21.312841Z","target":"hyper::proto::h1::role","line":1046,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs"}
{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:21.312861Z","target":"hyper::proto::h1::role","line":105,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs"}
{"v":0,"name":"sugar","msg":"sized write, len = 60","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:21.312879Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/encode.rs"}
{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:21.312892Z","target":"hyper::proto::h1::io","line":569,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/io.rs","buf.len":60,"self.len":113}
{"v":0,"name":"sugar","msg":"flushed 173 bytes","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:21.312968Z","target":"hyper::proto::h1::io","line":334,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/io.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:21.312991Z","target":"hyper::proto::h1::conn","line":731,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:21.624049Z","target":"hyper::proto::h1::conn","line":188,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"received 465 bytes","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:21.624102Z","target":"hyper::proto::h1::io","line":261,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/io.rs"}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:21.624116Z","target":"hyper::proto::h1::role","line":74,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs"}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:21.624131Z","target":"hyper::proto::h1::role","line":908,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs","bytes":465}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(381)","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:21.624145Z","target":"hyper::proto::h1::role","line":917,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs"}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:21.624164Z","target":"hyper::proto::h1::role","line":74,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs"}
{"v":0,"name":"sugar","msg":"parsed 11 headers","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:21.624178Z","target":"hyper::proto::h1::io","line":205,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/io.rs"}
{"v":0,"name":"sugar","msg":"incoming body is content-length (84 bytes)","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:21.624187Z","target":"hyper::proto::h1::conn","line":217,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"decode; state=Length(84)","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:21.624201Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/decode.rs"}
{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:21.62421Z","target":"hyper::proto::h1::conn","line":293,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:21.624232Z","target":"hyper::proto::h1::conn","line":467,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:21.624248Z","target":"hyper::proto::h1::conn","line":731,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:21.624258Z","target":"hyper::proto::h1::conn","line":731,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", api.devnet.solana.com)","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:21.624277Z","target":"hyper::client::pool","line":329,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/client/pool.rs"}
{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:21.624288Z","target":"hyper::client::pool","line":376,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/client/pool.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:21.624391Z","target":"hyper::proto::h1::conn","line":731,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"take? (\"https\", api.devnet.solana.com): expiration = Some(90s)","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:21.624434Z","target":"hyper::client::pool","line":610,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/client/pool.rs"}
{"v":0,"name":"sugar","msg":"reuse idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:21.624448Z","target":"hyper::client::pool","line":250,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/client/pool.rs"}
{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:21.624468Z","target":"hyper::proto::h1::role","line":105,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs"}
{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(81))","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:21.624484Z","target":"hyper::proto::h1::role","line":1046,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs"}
{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:21.624497Z","target":"hyper::proto::h1::role","line":105,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs"}
{"v":0,"name":"sugar","msg":"sized write, len = 81","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:21.624508Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/encode.rs"}
{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:21.624518Z","target":"hyper::proto::h1::io","line":569,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/io.rs","self.len":113,"buf.len":81}
{"v":0,"name":"sugar","msg":"flushed 194 bytes","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:21.624576Z","target":"hyper::proto::h1::io","line":334,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/io.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:21.62459Z","target":"hyper::proto::h1::conn","line":731,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"idle interval checking for expired","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:21.625746Z","target":"hyper::client::pool","line":764,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/client/pool.rs"}
{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:21.859916Z","target":"hyper::proto::h1::conn","line":188,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"received 621 bytes","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:21.859992Z","target":"hyper::proto::h1::io","line":261,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/io.rs"}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:21.860013Z","target":"hyper::proto::h1::role","line":74,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs"}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:21.860033Z","target":"hyper::proto::h1::role","line":908,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs","bytes":621}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(382)","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:21.860054Z","target":"hyper::proto::h1::role","line":917,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs"}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:21.860082Z","target":"hyper::proto::h1::role","line":74,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs"}
{"v":0,"name":"sugar","msg":"parsed 11 headers","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:21.860102Z","target":"hyper::proto::h1::io","line":205,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/io.rs"}
{"v":0,"name":"sugar","msg":"incoming body is content-length (239 bytes)","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:21.860115Z","target":"hyper::proto::h1::conn","line":217,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"decode; state=Length(239)","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:21.860136Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/decode.rs"}
{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:21.86015Z","target":"hyper::proto::h1::conn","line":293,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:21.860171Z","target":"hyper::proto::h1::conn","line":467,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:21.860192Z","target":"hyper::proto::h1::conn","line":731,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:21.860208Z","target":"hyper::proto::h1::conn","line":731,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", api.devnet.solana.com)","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:21.860233Z","target":"hyper::client::pool","line":329,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/client/pool.rs"}
{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:21.86025Z","target":"hyper::client::pool","line":376,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/client/pool.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:21.860339Z","target":"hyper::proto::h1::conn","line":731,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"take? (\"https\", api.devnet.solana.com): expiration = Some(90s)","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:21.860612Z","target":"hyper::client::pool","line":610,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/client/pool.rs"}
{"v":0,"name":"sugar","msg":"reuse idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:21.860652Z","target":"hyper::client::pool","line":250,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/client/pool.rs"}
{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:21.860693Z","target":"hyper::proto::h1::role","line":105,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs"}
{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(1309))","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:21.860718Z","target":"hyper::proto::h1::role","line":1046,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs"}
{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:21.860738Z","target":"hyper::proto::h1::role","line":105,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs"}
{"v":0,"name":"sugar","msg":"sized write, len = 1309","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:21.860757Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/encode.rs"}
{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:21.860773Z","target":"hyper::proto::h1::io","line":569,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/io.rs","self.len":115,"buf.len":1309}
{"v":0,"name":"sugar","msg":"flushed 1424 bytes","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:21.860923Z","target":"hyper::proto::h1::io","line":334,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/io.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:21.860949Z","target":"hyper::proto::h1::conn","line":731,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:22.107406Z","target":"hyper::proto::h1::conn","line":188,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"received 507 bytes","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:22.107465Z","target":"hyper::proto::h1::io","line":261,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/io.rs"}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:22.107482Z","target":"hyper::proto::h1::role","line":74,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs"}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:22.107498Z","target":"hyper::proto::h1::role","line":908,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs","bytes":507}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(382)","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:22.107515Z","target":"hyper::proto::h1::role","line":917,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs"}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:22.107537Z","target":"hyper::proto::h1::role","line":74,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs"}
{"v":0,"name":"sugar","msg":"parsed 11 headers","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:22.107553Z","target":"hyper::proto::h1::io","line":205,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/io.rs"}
{"v":0,"name":"sugar","msg":"incoming body is content-length (125 bytes)","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:22.107564Z","target":"hyper::proto::h1::conn","line":217,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"decode; state=Length(125)","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:22.10758Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/decode.rs"}
{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:22.107592Z","target":"hyper::proto::h1::conn","line":293,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:22.107608Z","target":"hyper::proto::h1::conn","line":467,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:22.107625Z","target":"hyper::proto::h1::conn","line":731,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:22.107637Z","target":"hyper::proto::h1::conn","line":731,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", api.devnet.solana.com)","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:22.107658Z","target":"hyper::client::pool","line":329,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/client/pool.rs"}
{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:22.107671Z","target":"hyper::client::pool","line":376,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/client/pool.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:22.107768Z","target":"hyper::proto::h1::conn","line":731,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"take? (\"https\", api.devnet.solana.com): expiration = Some(90s)","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:22.107817Z","target":"hyper::client::pool","line":610,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/client/pool.rs"}
{"v":0,"name":"sugar","msg":"reuse idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:22.107833Z","target":"hyper::client::pool","line":250,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/client/pool.rs"}
{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:22.107858Z","target":"hyper::proto::h1::role","line":105,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs"}
{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(160))","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:22.107877Z","target":"hyper::proto::h1::role","line":1046,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs"}
{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:22.107891Z","target":"hyper::proto::h1::role","line":105,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs"}
{"v":0,"name":"sugar","msg":"sized write, len = 160","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:22.107904Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/encode.rs"}
{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:22.107915Z","target":"hyper::proto::h1::io","line":569,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/io.rs","self.len":114,"buf.len":160}
{"v":0,"name":"sugar","msg":"flushed 274 bytes","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:22.107988Z","target":"hyper::proto::h1::io","line":334,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/io.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:22.108006Z","target":"hyper::proto::h1::conn","line":731,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:22.342514Z","target":"hyper::proto::h1::conn","line":188,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"received 461 bytes","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:22.342602Z","target":"hyper::proto::h1::io","line":261,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/io.rs"}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:22.342623Z","target":"hyper::proto::h1::role","line":74,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs"}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:22.342642Z","target":"hyper::proto::h1::role","line":908,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs","bytes":461}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(381)","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:22.342663Z","target":"hyper::proto::h1::role","line":917,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs"}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:22.342689Z","target":"hyper::proto::h1::role","line":74,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs"}
{"v":0,"name":"sugar","msg":"parsed 11 headers","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:22.342706Z","target":"hyper::proto::h1::io","line":205,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/io.rs"}
{"v":0,"name":"sugar","msg":"incoming body is content-length (80 bytes)","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:22.342721Z","target":"hyper::proto::h1::conn","line":217,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"decode; state=Length(80)","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:22.342742Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/decode.rs"}
{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:22.342756Z","target":"hyper::proto::h1::conn","line":293,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:22.342783Z","target":"hyper::proto::h1::conn","line":467,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:22.342805Z","target":"hyper::proto::h1::conn","line":731,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:22.34282Z","target":"hyper::proto::h1::conn","line":731,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", api.devnet.solana.com)","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:22.342846Z","target":"hyper::client::pool","line":329,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/client/pool.rs"}
{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:22.342862Z","target":"hyper::client::pool","line":376,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/client/pool.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:22.342958Z","target":"hyper::proto::h1::conn","line":731,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"take? (\"https\", api.devnet.solana.com): expiration = Some(90s)","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:22.343032Z","target":"hyper::client::pool","line":610,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/client/pool.rs"}
{"v":0,"name":"sugar","msg":"reuse idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:22.343054Z","target":"hyper::client::pool","line":250,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/client/pool.rs"}
{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:22.343085Z","target":"hyper::proto::h1::role","line":105,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs"}
{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(137))","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:22.343109Z","target":"hyper::proto::h1::role","line":1046,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs"}
{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:22.343127Z","target":"hyper::proto::h1::role","line":105,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs"}
{"v":0,"name":"sugar","msg":"sized write, len = 137","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:22.343143Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/encode.rs"}
{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:22.343156Z","target":"hyper::proto::h1::io","line":569,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/io.rs","self.len":114,"buf.len":137}
{"v":0,"name":"sugar","msg":"flushed 251 bytes","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:22.343311Z","target":"hyper::proto::h1::io","line":334,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/io.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:22.343346Z","target":"hyper::proto::h1::conn","line":731,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:22.577467Z","target":"hyper::proto::h1::conn","line":188,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"received 459 bytes","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:22.577543Z","target":"hyper::proto::h1::io","line":261,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/io.rs"}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:22.577564Z","target":"hyper::proto::h1::role","line":74,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs"}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:22.577584Z","target":"hyper::proto::h1::role","line":908,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs","bytes":459}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(381)","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:22.577604Z","target":"hyper::proto::h1::role","line":917,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs"}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:22.57763Z","target":"hyper::proto::h1::role","line":74,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs"}
{"v":0,"name":"sugar","msg":"parsed 11 headers","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:22.577648Z","target":"hyper::proto::h1::io","line":205,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/io.rs"}
{"v":0,"name":"sugar","msg":"incoming body is content-length (78 bytes)","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:22.577663Z","target":"hyper::proto::h1::conn","line":217,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"decode; state=Length(78)","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:22.577683Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/decode.rs"}
{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:22.577697Z","target":"hyper::proto::h1::conn","line":293,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:22.577718Z","target":"hyper::proto::h1::conn","line":467,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:22.577739Z","target":"hyper::proto::h1::conn","line":731,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:22.577755Z","target":"hyper::proto::h1::conn","line":731,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", api.devnet.solana.com)","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:22.57778Z","target":"hyper::client::pool","line":329,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/client/pool.rs"}
{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:22.577796Z","target":"hyper::client::pool","line":376,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/client/pool.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:22.57789Z","target":"hyper::proto::h1::conn","line":731,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"take? (\"https\", api.devnet.solana.com): expiration = Some(90s)","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:23.081717Z","target":"hyper::client::pool","line":610,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/client/pool.rs"}
{"v":0,"name":"sugar","msg":"reuse idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:23.081767Z","target":"hyper::client::pool","line":250,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/client/pool.rs"}
{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:23.081808Z","target":"hyper::proto::h1::role","line":105,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs"}
{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(160))","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:23.081834Z","target":"hyper::proto::h1::role","line":1046,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs"}
{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:23.081853Z","target":"hyper::proto::h1::role","line":105,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs"}
{"v":0,"name":"sugar","msg":"sized write, len = 160","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:23.081871Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/encode.rs"}
{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:23.081884Z","target":"hyper::proto::h1::io","line":569,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/io.rs","self.len":114,"buf.len":160}
{"v":0,"name":"sugar","msg":"flushed 274 bytes","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:23.082013Z","target":"hyper::proto::h1::io","line":334,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/io.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:23.082037Z","target":"hyper::proto::h1::conn","line":731,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:23.322544Z","target":"hyper::proto::h1::conn","line":188,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"received 559 bytes","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:23.322609Z","target":"hyper::proto::h1::io","line":261,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/io.rs"}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:23.322625Z","target":"hyper::proto::h1::role","line":74,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs"}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:23.322642Z","target":"hyper::proto::h1::role","line":908,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs","bytes":559}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(382)","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:23.322658Z","target":"hyper::proto::h1::role","line":917,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs"}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:23.32268Z","target":"hyper::proto::h1::role","line":74,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs"}
{"v":0,"name":"sugar","msg":"parsed 11 headers","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:23.322694Z","target":"hyper::proto::h1::io","line":205,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/io.rs"}
{"v":0,"name":"sugar","msg":"incoming body is content-length (177 bytes)","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:23.322706Z","target":"hyper::proto::h1::conn","line":217,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"decode; state=Length(177)","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:23.322722Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/decode.rs"}
{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:23.322734Z","target":"hyper::proto::h1::conn","line":293,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:23.322751Z","target":"hyper::proto::h1::conn","line":467,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:23.322769Z","target":"hyper::proto::h1::conn","line":731,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:23.322781Z","target":"hyper::proto::h1::conn","line":731,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", api.devnet.solana.com)","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:23.322802Z","target":"hyper::client::pool","line":329,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/client/pool.rs"}
{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:23.322815Z","target":"hyper::client::pool","line":376,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/client/pool.rs"}
{"v":0,"name":"sugar","msg":"checkout waiting for idle connection: (\"https\", api.devnet.solana.com)","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:23.323421Z","target":"hyper::client::pool","line":636,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/client/pool.rs"}
{"v":0,"name":"sugar","msg":"Http::connect; scheme=Some(\"https\"), host=Some(\"api.devnet.solana.com\"), port=None","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:23.323484Z","target":"hyper::client::connect::http","line":277,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/client/connect/http.rs"}
{"v":0,"name":"sugar","msg":"resolving host=\"api.devnet.solana.com\"","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:23.323575Z","target":"hyper::client::connect::dns","line":122,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/client/connect/dns.rs"}
{"v":0,"name":"sugar","msg":"connecting to 147.75.42.217:443","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:23.325845Z","target":"hyper::client::connect::http","line":531,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/client/connect/http.rs"}
{"v":0,"name":"sugar","msg":"connected to 147.75.42.217:443","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:23.561127Z","target":"hyper::client::connect::http","line":534,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/client/connect/http.rs"}
{"v":0,"name":"sugar","msg":"client handshake Http1","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:24.527439Z","target":"hyper::client::conn","line":873,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/client/conn.rs"}
{"v":0,"name":"sugar","msg":"handshake complete, spawning background dispatcher task","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:24.527487Z","target":"hyper::client::client","line":486,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/client/client.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Busy }","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:24.527541Z","target":"hyper::proto::h1::conn","line":731,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"checkout dropped for (\"https\", api.devnet.solana.com)","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:24.527566Z","target":"hyper::client::pool","line":678,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/client/pool.rs"}
{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:24.527602Z","target":"hyper::proto::h1::role","line":105,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs"}
{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(60))","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:24.527625Z","target":"hyper::proto::h1::role","line":1046,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs"}
{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:24.527644Z","target":"hyper::proto::h1::role","line":105,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs"}
{"v":0,"name":"sugar","msg":"sized write, len = 60","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:24.527661Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/encode.rs"}
{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:24.527675Z","target":"hyper::proto::h1::io","line":569,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/io.rs","self.len":113,"buf.len":60}
{"v":0,"name":"sugar","msg":"flushed 173 bytes","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:24.527758Z","target":"hyper::proto::h1::io","line":334,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/io.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:24.52778Z","target":"hyper::proto::h1::conn","line":731,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:24.763686Z","target":"hyper::proto::h1::conn","line":188,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"received 465 bytes","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:24.763761Z","target":"hyper::proto::h1::io","line":261,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/io.rs"}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:24.763782Z","target":"hyper::proto::h1::role","line":74,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs"}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:24.763802Z","target":"hyper::proto::h1::role","line":908,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs","bytes":465}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(381)","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:24.763822Z","target":"hyper::proto::h1::role","line":917,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs"}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:24.763848Z","target":"hyper::proto::h1::role","line":74,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs"}
{"v":0,"name":"sugar","msg":"parsed 11 headers","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:24.763865Z","target":"hyper::proto::h1::io","line":205,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/io.rs"}
{"v":0,"name":"sugar","msg":"incoming body is content-length (84 bytes)","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:24.763878Z","target":"hyper::proto::h1::conn","line":217,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"decode; state=Length(84)","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:24.763898Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/decode.rs"}
{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:24.763911Z","target":"hyper::proto::h1::conn","line":293,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:24.763944Z","target":"hyper::proto::h1::conn","line":467,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:24.763967Z","target":"hyper::proto::h1::conn","line":731,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:24.763984Z","target":"hyper::proto::h1::conn","line":731,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", api.devnet.solana.com)","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:24.764011Z","target":"hyper::client::pool","line":329,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/client/pool.rs"}
{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:24.764029Z","target":"hyper::client::pool","line":376,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/client/pool.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:24.764183Z","target":"hyper::proto::h1::conn","line":731,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"take? (\"https\", api.devnet.solana.com): expiration = Some(90s)","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:24.764246Z","target":"hyper::client::pool","line":610,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/client/pool.rs"}
{"v":0,"name":"sugar","msg":"reuse idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:24.764268Z","target":"hyper::client::pool","line":250,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/client/pool.rs"}
{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:24.7643Z","target":"hyper::proto::h1::role","line":105,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs"}
{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(81))","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:24.764323Z","target":"hyper::proto::h1::role","line":1046,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs"}
{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:24.764342Z","target":"hyper::proto::h1::role","line":105,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs"}
{"v":0,"name":"sugar","msg":"sized write, len = 81","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:24.76436Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/encode.rs"}
{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:24.764375Z","target":"hyper::proto::h1::io","line":569,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/io.rs","buf.len":81,"self.len":113}
{"v":0,"name":"sugar","msg":"flushed 194 bytes","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:24.764453Z","target":"hyper::proto::h1::io","line":334,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/io.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:24.764476Z","target":"hyper::proto::h1::conn","line":731,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"idle interval checking for expired","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:24.764538Z","target":"hyper::client::pool","line":764,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/client/pool.rs"}
{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:25.108707Z","target":"hyper::proto::h1::conn","line":188,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"received 621 bytes","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:25.108758Z","target":"hyper::proto::h1::io","line":261,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/io.rs"}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:25.108772Z","target":"hyper::proto::h1::role","line":74,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs"}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:25.108784Z","target":"hyper::proto::h1::role","line":908,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs","bytes":621}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(382)","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:25.108799Z","target":"hyper::proto::h1::role","line":917,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs"}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:25.108816Z","target":"hyper::proto::h1::role","line":74,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs"}
{"v":0,"name":"sugar","msg":"parsed 11 headers","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:25.108826Z","target":"hyper::proto::h1::io","line":205,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/io.rs"}
{"v":0,"name":"sugar","msg":"incoming body is content-length (239 bytes)","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:25.108834Z","target":"hyper::proto::h1::conn","line":217,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"decode; state=Length(239)","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:25.108846Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/decode.rs"}
{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:25.108856Z","target":"hyper::proto::h1::conn","line":293,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:25.108869Z","target":"hyper::proto::h1::conn","line":467,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:25.108882Z","target":"hyper::proto::h1::conn","line":731,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:25.108891Z","target":"hyper::proto::h1::conn","line":731,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", api.devnet.solana.com)","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:25.10891Z","target":"hyper::client::pool","line":329,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/client/pool.rs"}
{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:25.10892Z","target":"hyper::client::pool","line":376,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/client/pool.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:25.108988Z","target":"hyper::proto::h1::conn","line":731,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"take? (\"https\", api.devnet.solana.com): expiration = Some(90s)","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:25.109058Z","target":"hyper::client::pool","line":610,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/client/pool.rs"}
{"v":0,"name":"sugar","msg":"reuse idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:25.109077Z","target":"hyper::client::pool","line":250,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/client/pool.rs"}
{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:25.109095Z","target":"hyper::proto::h1::role","line":105,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs"}
{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(341))","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:25.109107Z","target":"hyper::proto::h1::role","line":1046,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs"}
{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:25.109117Z","target":"hyper::proto::h1::role","line":105,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs"}
{"v":0,"name":"sugar","msg":"sized write, len = 341","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:25.109129Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/encode.rs"}
{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:25.109137Z","target":"hyper::proto::h1::io","line":569,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/io.rs","buf.len":341,"self.len":114}
{"v":0,"name":"sugar","msg":"flushed 455 bytes","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:25.109189Z","target":"hyper::proto::h1::io","line":334,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/io.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:25.109202Z","target":"hyper::proto::h1::conn","line":731,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:25.344449Z","target":"hyper::proto::h1::conn","line":188,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"received 506 bytes","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:25.344528Z","target":"hyper::proto::h1::io","line":261,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/io.rs"}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:25.34455Z","target":"hyper::proto::h1::role","line":74,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs"}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:25.34457Z","target":"hyper::proto::h1::role","line":908,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs","bytes":506}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(382)","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:25.34459Z","target":"hyper::proto::h1::role","line":917,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs"}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:25.344618Z","target":"hyper::proto::h1::role","line":74,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs"}
{"v":0,"name":"sugar","msg":"parsed 11 headers","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:25.344636Z","target":"hyper::proto::h1::io","line":205,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/io.rs"}
{"v":0,"name":"sugar","msg":"incoming body is content-length (124 bytes)","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:25.344649Z","target":"hyper::proto::h1::conn","line":217,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"decode; state=Length(124)","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:25.344674Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/decode.rs"}
{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:25.344689Z","target":"hyper::proto::h1::conn","line":293,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:25.34471Z","target":"hyper::proto::h1::conn","line":467,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:25.344731Z","target":"hyper::proto::h1::conn","line":731,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:25.344746Z","target":"hyper::proto::h1::conn","line":731,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", api.devnet.solana.com)","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:25.344771Z","target":"hyper::client::pool","line":329,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/client/pool.rs"}
{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:25.344789Z","target":"hyper::client::pool","line":376,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/client/pool.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:25.344887Z","target":"hyper::proto::h1::conn","line":731,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"take? (\"https\", api.devnet.solana.com): expiration = Some(90s)","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:25.344952Z","target":"hyper::client::pool","line":610,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/client/pool.rs"}
{"v":0,"name":"sugar","msg":"reuse idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:25.344973Z","target":"hyper::client::pool","line":250,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/client/pool.rs"}
{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:25.345002Z","target":"hyper::proto::h1::role","line":105,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs"}
{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(159))","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:25.345024Z","target":"hyper::proto::h1::role","line":1046,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs"}
{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:25.345042Z","target":"hyper::proto::h1::role","line":105,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs"}
{"v":0,"name":"sugar","msg":"sized write, len = 159","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:25.345059Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/encode.rs"}
{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:25.345072Z","target":"hyper::proto::h1::io","line":569,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/io.rs","self.len":114,"buf.len":159}
{"v":0,"name":"sugar","msg":"flushed 273 bytes","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:25.34516Z","target":"hyper::proto::h1::io","line":334,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/io.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:25.345183Z","target":"hyper::proto::h1::conn","line":731,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:25.58198Z","target":"hyper::proto::h1::conn","line":188,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"received 461 bytes","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:25.582054Z","target":"hyper::proto::h1::io","line":261,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/io.rs"}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:25.582077Z","target":"hyper::proto::h1::role","line":74,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs"}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:25.582097Z","target":"hyper::proto::h1::role","line":908,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs","bytes":461}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(381)","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:25.582117Z","target":"hyper::proto::h1::role","line":917,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs"}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:25.582143Z","target":"hyper::proto::h1::role","line":74,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs"}
{"v":0,"name":"sugar","msg":"parsed 11 headers","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:25.58216Z","target":"hyper::proto::h1::io","line":205,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/io.rs"}
{"v":0,"name":"sugar","msg":"incoming body is content-length (80 bytes)","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:25.582174Z","target":"hyper::proto::h1::conn","line":217,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"decode; state=Length(80)","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:25.582193Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/decode.rs"}
{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:25.582207Z","target":"hyper::proto::h1::conn","line":293,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:25.582236Z","target":"hyper::proto::h1::conn","line":467,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:25.582259Z","target":"hyper::proto::h1::conn","line":731,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:25.582274Z","target":"hyper::proto::h1::conn","line":731,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", api.devnet.solana.com)","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:25.582299Z","target":"hyper::client::pool","line":329,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/client/pool.rs"}
{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:25.582316Z","target":"hyper::client::pool","line":376,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/client/pool.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:25.582433Z","target":"hyper::proto::h1::conn","line":731,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"take? (\"https\", api.devnet.solana.com): expiration = Some(90s)","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:25.582482Z","target":"hyper::client::pool","line":610,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/client/pool.rs"}
{"v":0,"name":"sugar","msg":"reuse idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:25.5825Z","target":"hyper::client::pool","line":250,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/client/pool.rs"}
{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:25.582525Z","target":"hyper::proto::h1::role","line":105,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs"}
{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(137))","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:25.582543Z","target":"hyper::proto::h1::role","line":1046,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs"}
{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:25.582559Z","target":"hyper::proto::h1::role","line":105,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs"}
{"v":0,"name":"sugar","msg":"sized write, len = 137","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:25.582573Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/encode.rs"}
{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:25.582584Z","target":"hyper::proto::h1::io","line":569,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/io.rs","self.len":114,"buf.len":137}
{"v":0,"name":"sugar","msg":"flushed 251 bytes","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:25.582662Z","target":"hyper::proto::h1::io","line":334,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/io.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:25.58268Z","target":"hyper::proto::h1::conn","line":731,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:25.817987Z","target":"hyper::proto::h1::conn","line":188,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"received 459 bytes","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:25.81806Z","target":"hyper::proto::h1::io","line":261,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/io.rs"}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:25.818083Z","target":"hyper::proto::h1::role","line":74,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs"}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:25.818104Z","target":"hyper::proto::h1::role","line":908,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs","bytes":459}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(381)","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:25.818123Z","target":"hyper::proto::h1::role","line":917,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs"}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:25.81815Z","target":"hyper::proto::h1::role","line":74,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs"}
{"v":0,"name":"sugar","msg":"parsed 11 headers","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:25.818167Z","target":"hyper::proto::h1::io","line":205,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/io.rs"}
{"v":0,"name":"sugar","msg":"incoming body is content-length (78 bytes)","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:25.818181Z","target":"hyper::proto::h1::conn","line":217,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"decode; state=Length(78)","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:25.8182Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/decode.rs"}
{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:25.818214Z","target":"hyper::proto::h1::conn","line":293,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:25.818235Z","target":"hyper::proto::h1::conn","line":467,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:25.818256Z","target":"hyper::proto::h1::conn","line":731,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:25.818272Z","target":"hyper::proto::h1::conn","line":731,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", api.devnet.solana.com)","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:25.818297Z","target":"hyper::client::pool","line":329,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/client/pool.rs"}
{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:25.818314Z","target":"hyper::client::pool","line":376,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/client/pool.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:25.818433Z","target":"hyper::proto::h1::conn","line":731,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"take? (\"https\", api.devnet.solana.com): expiration = Some(90s)","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:26.323423Z","target":"hyper::client::pool","line":610,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/client/pool.rs"}
{"v":0,"name":"sugar","msg":"reuse idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:26.323463Z","target":"hyper::client::pool","line":250,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/client/pool.rs"}
{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:26.323497Z","target":"hyper::proto::h1::role","line":105,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs"}
{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(159))","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:26.323516Z","target":"hyper::proto::h1::role","line":1046,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs"}
{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:26.323531Z","target":"hyper::proto::h1::role","line":105,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs"}
{"v":0,"name":"sugar","msg":"sized write, len = 159","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:26.323545Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/encode.rs"}
{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:26.323556Z","target":"hyper::proto::h1::io","line":569,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/io.rs","self.len":114,"buf.len":159}
{"v":0,"name":"sugar","msg":"flushed 273 bytes","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:26.32366Z","target":"hyper::proto::h1::io","line":334,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/io.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:26.32368Z","target":"hyper::proto::h1::conn","line":731,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:26.56455Z","target":"hyper::proto::h1::conn","line":188,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"received 559 bytes","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:26.564608Z","target":"hyper::proto::h1::io","line":261,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/io.rs"}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:26.564625Z","target":"hyper::proto::h1::role","line":74,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs"}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:26.564643Z","target":"hyper::proto::h1::role","line":908,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs","bytes":559}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(382)","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:26.564659Z","target":"hyper::proto::h1::role","line":917,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs"}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:26.564681Z","target":"hyper::proto::h1::role","line":74,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs"}
{"v":0,"name":"sugar","msg":"parsed 11 headers","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:26.564695Z","target":"hyper::proto::h1::io","line":205,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/io.rs"}
{"v":0,"name":"sugar","msg":"incoming body is content-length (177 bytes)","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:26.564706Z","target":"hyper::proto::h1::conn","line":217,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"decode; state=Length(177)","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:26.564723Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/decode.rs"}
{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:26.564734Z","target":"hyper::proto::h1::conn","line":293,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:26.564751Z","target":"hyper::proto::h1::conn","line":467,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:26.564768Z","target":"hyper::proto::h1::conn","line":731,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:26.56478Z","target":"hyper::proto::h1::conn","line":731,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", api.devnet.solana.com)","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:26.564801Z","target":"hyper::client::pool","line":329,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/client/pool.rs"}
{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:26.564814Z","target":"hyper::client::pool","line":376,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/client/pool.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:26.564893Z","target":"hyper::proto::h1::conn","line":731,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"Minted! TxId: 28jHmBtCiaxcVSoxgHtWYjWg7ukh2LghbXYDrmnRMHcpgbsNCs9WFwgFEFx6WWRaJhHG3DHruKNU5XxFV5YsJGbC","level":30,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:26.565194Z","target":"sugar_cli::mint::process","line":417,"file":"src/mint/process.rs"}
{"v":0,"name":"sugar","msg":"Cleanup TxId: K4gTukprvE6RSJ9DgkPp6QQmVFw67AHaEfZR2hwVFb3fyBYvJTWLs6vxakn8AaDKdJhkwXQQ5caWTQLCTiTy5GR","level":30,"hostname":"Tylers-MBP.attlocal.net","pid":71328,"time":"2022-05-13T16:53:26.565227Z","target":"sugar_cli::mint::process","line":418,"file":"src/mint/process.rs"}
o/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/client/pool.rs"}
{"v":0,"name":"sugar","msg":"reuse idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":71243,"time":"2022-05-13T16:52:34.620498Z","target":"hyper::client::pool","line":250,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/client/pool.rs"}
{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71243,"time":"2022-05-13T16:52:34.620521Z","target":"hyper::proto::h1::role","line":105,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs"}
{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(137))","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71243,"time":"2022-05-13T16:52:34.620538Z","target":"hyper::proto::h1::role","line":1046,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs"}
{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71243,"time":"2022-05-13T16:52:34.620552Z","target":"hyper::proto::h1::role","line":105,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs"}
{"v":0,"name":"sugar","msg":"sized write, len = 137","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71243,"time":"2022-05-13T16:52:34.620565Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/encode.rs"}
{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71243,"time":"2022-05-13T16:52:34.620576Z","target":"hyper::proto::h1::io","line":569,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/io.rs","buf.len":137,"self.len":114}
{"v":0,"name":"sugar","msg":"flushed 251 bytes","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":71243,"time":"2022-05-13T16:52:34.620641Z","target":"hyper::proto::h1::io","line":334,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/io.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71243,"time":"2022-05-13T16:52:34.620658Z","target":"hyper::proto::h1::conn","line":731,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71243,"time":"2022-05-13T16:52:34.86184Z","target":"hyper::proto::h1::conn","line":188,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"received 459 bytes","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71243,"time":"2022-05-13T16:52:34.861947Z","target":"hyper::proto::h1::io","line":261,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/io.rs"}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71243,"time":"2022-05-13T16:52:34.861983Z","target":"hyper::proto::h1::role","line":74,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs"}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71243,"time":"2022-05-13T16:52:34.862014Z","target":"hyper::proto::h1::role","line":908,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs","bytes":459}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(381)","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71243,"time":"2022-05-13T16:52:34.862043Z","target":"hyper::proto::h1::role","line":917,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs"}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71243,"time":"2022-05-13T16:52:34.862083Z","target":"hyper::proto::h1::role","line":74,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs"}
{"v":0,"name":"sugar","msg":"parsed 11 headers","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":71243,"time":"2022-05-13T16:52:34.862109Z","target":"hyper::proto::h1::io","line":205,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/io.rs"}
{"v":0,"name":"sugar","msg":"incoming body is content-length (78 bytes)","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":71243,"time":"2022-05-13T16:52:34.862129Z","target":"hyper::proto::h1::conn","line":217,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"decode; state=Length(78)","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71243,"time":"2022-05-13T16:52:34.862158Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/decode.rs"}
{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":71243,"time":"2022-05-13T16:52:34.862179Z","target":"hyper::proto::h1::conn","line":293,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71243,"time":"2022-05-13T16:52:34.86221Z","target":"hyper::proto::h1::conn","line":467,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71243,"time":"2022-05-13T16:52:34.862243Z","target":"hyper::proto::h1::conn","line":731,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71243,"time":"2022-05-13T16:52:34.862267Z","target":"hyper::proto::h1::conn","line":731,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", api.devnet.solana.com)","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71243,"time":"2022-05-13T16:52:34.862304Z","target":"hyper::client::pool","line":329,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/client/pool.rs"}
{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":71243,"time":"2022-05-13T16:52:34.862328Z","target":"hyper::client::pool","line":376,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/client/pool.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71243,"time":"2022-05-13T16:52:34.862506Z","target":"hyper::proto::h1::conn","line":731,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"take? (\"https\", api.devnet.solana.com): expiration = Some(90s)","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71243,"time":"2022-05-13T16:52:35.366905Z","target":"hyper::client::pool","line":610,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/client/pool.rs"}
{"v":0,"name":"sugar","msg":"reuse idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":71243,"time":"2022-05-13T16:52:35.366946Z","target":"hyper::client::pool","line":250,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/client/pool.rs"}
{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71243,"time":"2022-05-13T16:52:35.366978Z","target":"hyper::proto::h1::role","line":105,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs"}
{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(160))","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71243,"time":"2022-05-13T16:52:35.366997Z","target":"hyper::proto::h1::role","line":1046,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs"}
{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71243,"time":"2022-05-13T16:52:35.367012Z","target":"hyper::proto::h1::role","line":105,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs"}
{"v":0,"name":"sugar","msg":"sized write, len = 160","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71243,"time":"2022-05-13T16:52:35.367026Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/encode.rs"}
{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71243,"time":"2022-05-13T16:52:35.367037Z","target":"hyper::proto::h1::io","line":569,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/io.rs","buf.len":160,"self.len":114}
{"v":0,"name":"sugar","msg":"flushed 274 bytes","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":71243,"time":"2022-05-13T16:52:35.367142Z","target":"hyper::proto::h1::io","line":334,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/io.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71243,"time":"2022-05-13T16:52:35.36716Z","target":"hyper::proto::h1::conn","line":731,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71243,"time":"2022-05-13T16:52:35.607195Z","target":"hyper::proto::h1::conn","line":188,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"received 559 bytes","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71243,"time":"2022-05-13T16:52:35.607304Z","target":"hyper::proto::h1::io","line":261,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/io.rs"}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71243,"time":"2022-05-13T16:52:35.60734Z","target":"hyper::proto::h1::role","line":74,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs"}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71243,"time":"2022-05-13T16:52:35.607372Z","target":"hyper::proto::h1::role","line":908,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs","bytes":559}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(382)","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71243,"time":"2022-05-13T16:52:35.607404Z","target":"hyper::proto::h1::role","line":917,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs"}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71243,"time":"2022-05-13T16:52:35.607457Z","target":"hyper::proto::h1::role","line":74,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs"}
{"v":0,"name":"sugar","msg":"parsed 11 headers","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":71243,"time":"2022-05-13T16:52:35.607475Z","target":"hyper::proto::h1::io","line":205,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/io.rs"}
{"v":0,"name":"sugar","msg":"incoming body is content-length (177 bytes)","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":71243,"time":"2022-05-13T16:52:35.607488Z","target":"hyper::proto::h1::conn","line":217,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"decode; state=Length(177)","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71243,"time":"2022-05-13T16:52:35.607509Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/decode.rs"}
{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":71243,"time":"2022-05-13T16:52:35.607522Z","target":"hyper::proto::h1::conn","line":293,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71243,"time":"2022-05-13T16:52:35.607554Z","target":"hyper::proto::h1::conn","line":467,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71243,"time":"2022-05-13T16:52:35.607577Z","target":"hyper::proto::h1::conn","line":731,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71243,"time":"2022-05-13T16:52:35.607593Z","target":"hyper::proto::h1::conn","line":731,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", api.devnet.solana.com)","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71243,"time":"2022-05-13T16:52:35.607617Z","target":"hyper::client::pool","line":329,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/client/pool.rs"}
{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":71243,"time":"2022-05-13T16:52:35.607633Z","target":"hyper::client::pool","line":376,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/client/pool.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":71243,"time":"2022-05-13T16:52:35.607761Z","target":"hyper::proto::h1::conn","line":731,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"Minted! TxId: 3HzNWT3WEEw5tD6Qv3QFtZVLSKsdCPuxAHyDpE3coNXC3GSQxtBN2fH1jzF1p7NJ1HJXuG4AkGhWFK47hNk5pqCN","level":30,"hostname":"Tylers-MBP.attlocal.net","pid":71243,"time":"2022-05-13T16:52:35.60832Z","target":"sugar_cli::mint::process","line":417,"file":"src/mint/process.rs"}
{"v":0,"name":"sugar","msg":"Cleanup TxId: 5gYsgMUE4pFayyPbkgEgW2YjMpbkU95yXZNVag5wpQK1m9o7aGA51KBkHbDBQmP1SfyMHgNPDVfc9RWzWWHGDRK2","level":30,"hostname":"Tylers-MBP.attlocal.net","pid":71243,"time":"2022-05-13T16:52:35.608384Z","target":"sugar_cli::mint::process","line":418,"file":"src/mint/process.rs"}
"}
{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(137))","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":70214,"time":"2022-05-13T16:27:37.896285Z","target":"hyper::proto::h1::role","line":1046,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs"}
{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":70214,"time":"2022-05-13T16:27:37.8963Z","target":"hyper::proto::h1::role","line":105,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs"}
{"v":0,"name":"sugar","msg":"sized write, len = 137","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":70214,"time":"2022-05-13T16:27:37.896314Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/encode.rs"}
{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":70214,"time":"2022-05-13T16:27:37.896325Z","target":"hyper::proto::h1::io","line":569,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/io.rs","buf.len":137,"self.len":114}
{"v":0,"name":"sugar","msg":"flushed 251 bytes","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":70214,"time":"2022-05-13T16:27:37.896475Z","target":"hyper::proto::h1::io","line":334,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/io.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":70214,"time":"2022-05-13T16:27:37.896535Z","target":"hyper::proto::h1::conn","line":731,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":70214,"time":"2022-05-13T16:27:37.924607Z","target":"hyper::proto::h1::conn","line":188,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"received 459 bytes","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":70214,"time":"2022-05-13T16:27:37.924682Z","target":"hyper::proto::h1::io","line":261,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/io.rs"}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":70214,"time":"2022-05-13T16:27:37.924703Z","target":"hyper::proto::h1::role","line":74,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs"}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":70214,"time":"2022-05-13T16:27:37.924723Z","target":"hyper::proto::h1::role","line":908,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs","bytes":459}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(381)","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":70214,"time":"2022-05-13T16:27:37.924745Z","target":"hyper::proto::h1::role","line":917,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs"}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":70214,"time":"2022-05-13T16:27:37.924772Z","target":"hyper::proto::h1::role","line":74,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs"}
{"v":0,"name":"sugar","msg":"parsed 11 headers","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":70214,"time":"2022-05-13T16:27:37.92479Z","target":"hyper::proto::h1::io","line":205,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/io.rs"}
{"v":0,"name":"sugar","msg":"incoming body is content-length (78 bytes)","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":70214,"time":"2022-05-13T16:27:37.924804Z","target":"hyper::proto::h1::conn","line":217,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"decode; state=Length(78)","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":70214,"time":"2022-05-13T16:27:37.924824Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/decode.rs"}
{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":70214,"time":"2022-05-13T16:27:37.924838Z","target":"hyper::proto::h1::conn","line":293,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":70214,"time":"2022-05-13T16:27:37.924858Z","target":"hyper::proto::h1::conn","line":467,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":70214,"time":"2022-05-13T16:27:37.924879Z","target":"hyper::proto::h1::conn","line":731,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":70214,"time":"2022-05-13T16:27:37.924895Z","target":"hyper::proto::h1::conn","line":731,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", api.devnet.solana.com)","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":70214,"time":"2022-05-13T16:27:37.92492Z","target":"hyper::client::pool","line":329,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/client/pool.rs"}
{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":70214,"time":"2022-05-13T16:27:37.924936Z","target":"hyper::client::pool","line":376,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/client/pool.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":70214,"time":"2022-05-13T16:27:37.925041Z","target":"hyper::proto::h1::conn","line":731,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"take? (\"https\", api.devnet.solana.com): expiration = Some(90s)","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":70214,"time":"2022-05-13T16:27:38.429861Z","target":"hyper::client::pool","line":610,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/client/pool.rs"}
{"v":0,"name":"sugar","msg":"reuse idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":70214,"time":"2022-05-13T16:27:38.429906Z","target":"hyper::client::pool","line":250,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/client/pool.rs"}
{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":70214,"time":"2022-05-13T16:27:38.429948Z","target":"hyper::proto::h1::role","line":105,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs"}
{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(159))","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":70214,"time":"2022-05-13T16:27:38.429972Z","target":"hyper::proto::h1::role","line":1046,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs"}
{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":70214,"time":"2022-05-13T16:27:38.429991Z","target":"hyper::proto::h1::role","line":105,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs"}
{"v":0,"name":"sugar","msg":"sized write, len = 159","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":70214,"time":"2022-05-13T16:27:38.430009Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/encode.rs"}
{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":70214,"time":"2022-05-13T16:27:38.430023Z","target":"hyper::proto::h1::io","line":569,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/io.rs","self.len":114,"buf.len":159}
{"v":0,"name":"sugar","msg":"flushed 273 bytes","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":70214,"time":"2022-05-13T16:27:38.430151Z","target":"hyper::proto::h1::io","line":334,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/io.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":70214,"time":"2022-05-13T16:27:38.430174Z","target":"hyper::proto::h1::conn","line":731,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":70214,"time":"2022-05-13T16:27:38.458597Z","target":"hyper::proto::h1::conn","line":188,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"received 559 bytes","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":70214,"time":"2022-05-13T16:27:38.458674Z","target":"hyper::proto::h1::io","line":261,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/io.rs"}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":70214,"time":"2022-05-13T16:27:38.458714Z","target":"hyper::proto::h1::role","line":74,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs"}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":70214,"time":"2022-05-13T16:27:38.458762Z","target":"hyper::proto::h1::role","line":908,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs","bytes":559}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(382)","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":70214,"time":"2022-05-13T16:27:38.458795Z","target":"hyper::proto::h1::role","line":917,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs"}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":70214,"time":"2022-05-13T16:27:38.458824Z","target":"hyper::proto::h1::role","line":74,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs"}
{"v":0,"name":"sugar","msg":"parsed 11 headers","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":70214,"time":"2022-05-13T16:27:38.458843Z","target":"hyper::proto::h1::io","line":205,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/io.rs"}
{"v":0,"name":"sugar","msg":"incoming body is content-length (177 bytes)","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":70214,"time":"2022-05-13T16:27:38.458856Z","target":"hyper::proto::h1::conn","line":217,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"decode; state=Length(177)","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":70214,"time":"2022-05-13T16:27:38.458878Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/decode.rs"}
{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":70214,"time":"2022-05-13T16:27:38.458892Z","target":"hyper::proto::h1::conn","line":293,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":70214,"time":"2022-05-13T16:27:38.458913Z","target":"hyper::proto::h1::conn","line":467,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":70214,"time":"2022-05-13T16:27:38.458935Z","target":"hyper::proto::h1::conn","line":731,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":70214,"time":"2022-05-13T16:27:38.458951Z","target":"hyper::proto::h1::conn","line":731,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", api.devnet.solana.com)","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":70214,"time":"2022-05-13T16:27:38.458977Z","target":"hyper::client::pool","line":329,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/client/pool.rs"}
{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":70214,"time":"2022-05-13T16:27:38.458995Z","target":"hyper::client::pool","line":376,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/client/pool.rs"}
{"v":0,"name":"sugar","msg":"Minted! TxId: 5g3HaW7R2jEVbH3swk1GcvrYRgVevBvwo8F9hkLmZGNhd3kSLo3h2L1xJbT24BDsrCcwjYNGPnDHDopp5dyTYMfj","level":30,"hostname":"Tylers-MBP.attlocal.net","pid":70214,"time":"2022-05-13T16:27:38.459459Z","target":"sugar_cli::mint::process","line":417,"file":"src/mint/process.rs"}
{"v":0,"name":"sugar","msg":"Cleanup TxId: u2TueiZjBM4736CGcTPvxdBvFVbtRUgcbQDcezerecKuFQAgiQU7gEiNo9UQtFZH2aiWGQWY9BhJTJVFeAchF4K","level":30,"hostname":"Tylers-MBP.attlocal.net","pid":70214,"time":"2022-05-13T16:27:38.459504Z","target":"sugar_cli::mint::process","line":418,"file":"src/mint/process.rs"}
,"line":731,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"take? (\"https\", api.devnet.solana.com): expiration = Some(90s)","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":70190,"time":"2022-05-13T16:27:32.518246Z","target":"hyper::client::pool","line":610,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/client/pool.rs"}
{"v":0,"name":"sugar","msg":"reuse idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":70190,"time":"2022-05-13T16:27:32.518267Z","target":"hyper::client::pool","line":250,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/client/pool.rs"}
{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":70190,"time":"2022-05-13T16:27:32.518296Z","target":"hyper::proto::h1::role","line":105,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs"}
{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(137))","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":70190,"time":"2022-05-13T16:27:32.518318Z","target":"hyper::proto::h1::role","line":1046,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs"}
{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":70190,"time":"2022-05-13T16:27:32.518337Z","target":"hyper::proto::h1::role","line":105,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs"}
{"v":0,"name":"sugar","msg":"sized write, len = 137","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":70190,"time":"2022-05-13T16:27:32.518353Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/encode.rs"}
{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":70190,"time":"2022-05-13T16:27:32.518367Z","target":"hyper::proto::h1::io","line":569,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/io.rs","self.len":114,"buf.len":137}
{"v":0,"name":"sugar","msg":"flushed 251 bytes","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":70190,"time":"2022-05-13T16:27:32.518461Z","target":"hyper::proto::h1::io","line":334,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/io.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":70190,"time":"2022-05-13T16:27:32.518483Z","target":"hyper::proto::h1::conn","line":731,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":70190,"time":"2022-05-13T16:27:32.546273Z","target":"hyper::proto::h1::conn","line":188,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"received 459 bytes","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":70190,"time":"2022-05-13T16:27:32.546345Z","target":"hyper::proto::h1::io","line":261,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/io.rs"}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":70190,"time":"2022-05-13T16:27:32.546365Z","target":"hyper::proto::h1::role","line":74,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs"}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":70190,"time":"2022-05-13T16:27:32.546387Z","target":"hyper::proto::h1::role","line":908,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs","bytes":459}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(381)","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":70190,"time":"2022-05-13T16:27:32.546406Z","target":"hyper::proto::h1::role","line":917,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs"}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":70190,"time":"2022-05-13T16:27:32.546433Z","target":"hyper::proto::h1::role","line":74,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs"}
{"v":0,"name":"sugar","msg":"parsed 11 headers","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":70190,"time":"2022-05-13T16:27:32.546451Z","target":"hyper::proto::h1::io","line":205,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/io.rs"}
{"v":0,"name":"sugar","msg":"incoming body is content-length (78 bytes)","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":70190,"time":"2022-05-13T16:27:32.546464Z","target":"hyper::proto::h1::conn","line":217,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"decode; state=Length(78)","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":70190,"time":"2022-05-13T16:27:32.546484Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/decode.rs"}
{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":70190,"time":"2022-05-13T16:27:32.546497Z","target":"hyper::proto::h1::conn","line":293,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":70190,"time":"2022-05-13T16:27:32.546518Z","target":"hyper::proto::h1::conn","line":467,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":70190,"time":"2022-05-13T16:27:32.546539Z","target":"hyper::proto::h1::conn","line":731,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":70190,"time":"2022-05-13T16:27:32.546554Z","target":"hyper::proto::h1::conn","line":731,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", api.devnet.solana.com)","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":70190,"time":"2022-05-13T16:27:32.546579Z","target":"hyper::client::pool","line":329,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/client/pool.rs"}
{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":70190,"time":"2022-05-13T16:27:32.546595Z","target":"hyper::client::pool","line":376,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/client/pool.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":70190,"time":"2022-05-13T16:27:32.546725Z","target":"hyper::proto::h1::conn","line":731,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"take? (\"https\", api.devnet.solana.com): expiration = Some(90s)","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":70190,"time":"2022-05-13T16:27:33.051474Z","target":"hyper::client::pool","line":610,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/client/pool.rs"}
{"v":0,"name":"sugar","msg":"reuse idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":70190,"time":"2022-05-13T16:27:33.051523Z","target":"hyper::client::pool","line":250,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/client/pool.rs"}
{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":70190,"time":"2022-05-13T16:27:33.051563Z","target":"hyper::proto::h1::role","line":105,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs"}
{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(159))","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":70190,"time":"2022-05-13T16:27:33.051587Z","target":"hyper::proto::h1::role","line":1046,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs"}
{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":70190,"time":"2022-05-13T16:27:33.051609Z","target":"hyper::proto::h1::role","line":105,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs"}
{"v":0,"name":"sugar","msg":"sized write, len = 159","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":70190,"time":"2022-05-13T16:27:33.051626Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/encode.rs"}
{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":70190,"time":"2022-05-13T16:27:33.051641Z","target":"hyper::proto::h1::io","line":569,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/io.rs","self.len":114,"buf.len":159}
{"v":0,"name":"sugar","msg":"flushed 273 bytes","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":70190,"time":"2022-05-13T16:27:33.051774Z","target":"hyper::proto::h1::io","line":334,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/io.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":70190,"time":"2022-05-13T16:27:33.0518Z","target":"hyper::proto::h1::conn","line":731,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":70190,"time":"2022-05-13T16:27:33.079428Z","target":"hyper::proto::h1::conn","line":188,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"received 559 bytes","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":70190,"time":"2022-05-13T16:27:33.079488Z","target":"hyper::proto::h1::io","line":261,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/io.rs"}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":70190,"time":"2022-05-13T16:27:33.07951Z","target":"hyper::proto::h1::role","line":74,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs"}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":70190,"time":"2022-05-13T16:27:33.079528Z","target":"hyper::proto::h1::role","line":908,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs","bytes":559}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(382)","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":70190,"time":"2022-05-13T16:27:33.079545Z","target":"hyper::proto::h1::role","line":917,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs"}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":70190,"time":"2022-05-13T16:27:33.079566Z","target":"hyper::proto::h1::role","line":74,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs"}
{"v":0,"name":"sugar","msg":"parsed 11 headers","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":70190,"time":"2022-05-13T16:27:33.07958Z","target":"hyper::proto::h1::io","line":205,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/io.rs"}
{"v":0,"name":"sugar","msg":"incoming body is content-length (177 bytes)","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":70190,"time":"2022-05-13T16:27:33.079591Z","target":"hyper::proto::h1::conn","line":217,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"decode; state=Length(177)","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":70190,"time":"2022-05-13T16:27:33.079608Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/decode.rs"}
{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":70190,"time":"2022-05-13T16:27:33.079619Z","target":"hyper::proto::h1::conn","line":293,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":70190,"time":"2022-05-13T16:27:33.079636Z","target":"hyper::proto::h1::conn","line":467,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":70190,"time":"2022-05-13T16:27:33.079653Z","target":"hyper::proto::h1::conn","line":731,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":70190,"time":"2022-05-13T16:27:33.079665Z","target":"hyper::proto::h1::conn","line":731,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", api.devnet.solana.com)","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":70190,"time":"2022-05-13T16:27:33.079685Z","target":"hyper::client::pool","line":329,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/client/pool.rs"}
{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":70190,"time":"2022-05-13T16:27:33.079703Z","target":"hyper::client::pool","line":376,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/client/pool.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":70190,"time":"2022-05-13T16:27:33.079775Z","target":"hyper::proto::h1::conn","line":731,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"take? (\"https\", api.devnet.solana.com): expiration = Some(90s)","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":70190,"time":"2022-05-13T16:27:33.079826Z","target":"hyper::client::pool","line":610,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/client/pool.rs"}
{"v":0,"name":"sugar","msg":"reuse idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":70190,"time":"2022-05-13T16:27:33.079843Z","target":"hyper::client::pool","line":250,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/client/pool.rs"}
{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":70190,"time":"2022-05-13T16:27:33.079867Z","target":"hyper::proto::h1::role","line":105,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs"}
{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(137))","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":70190,"time":"2022-05-13T16:27:33.079884Z","target":"hyper::proto::h1::role","line":1046,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs"}
{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":70190,"time":"2022-05-13T16:27:33.079899Z","target":"hyper::proto::h1::role","line":105,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs"}
{"v":0,"name":"sugar","msg":"sized write, len = 137","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":70190,"time":"2022-05-13T16:27:33.079912Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/encode.rs"}
{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":70190,"time":"2022-05-13T16:27:33.079924Z","target":"hyper::proto::h1::io","line":569,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/io.rs","buf.len":137,"self.len":114}
{"v":0,"name":"sugar","msg":"flushed 251 bytes","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":70190,"time":"2022-05-13T16:27:33.079994Z","target":"hyper::proto::h1::io","line":334,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/io.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":70190,"time":"2022-05-13T16:27:33.080011Z","target":"hyper::proto::h1::conn","line":731,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":70190,"time":"2022-05-13T16:27:33.108292Z","target":"hyper::proto::h1::conn","line":188,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"received 459 bytes","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":70190,"time":"2022-05-13T16:27:33.108366Z","target":"hyper::proto::h1::io","line":261,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/io.rs"}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":70190,"time":"2022-05-13T16:27:33.108386Z","target":"hyper::proto::h1::role","line":74,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs"}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":70190,"time":"2022-05-13T16:27:33.108405Z","target":"hyper::proto::h1::role","line":908,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs","bytes":459}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(381)","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":70190,"time":"2022-05-13T16:27:33.108428Z","target":"hyper::proto::h1::role","line":917,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs"}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":70190,"time":"2022-05-13T16:27:33.108455Z","target":"hyper::proto::h1::role","line":74,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs"}
{"v":0,"name":"sugar","msg":"parsed 11 headers","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":70190,"time":"2022-05-13T16:27:33.108472Z","target":"hyper::proto::h1::io","line":205,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/io.rs"}
{"v":0,"name":"sugar","msg":"incoming body is content-length (78 bytes)","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":70190,"time":"2022-05-13T16:27:33.108486Z","target":"hyper::proto::h1::conn","line":217,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"decode; state=Length(78)","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":70190,"time":"2022-05-13T16:27:33.108505Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/decode.rs"}
{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":70190,"time":"2022-05-13T16:27:33.108519Z","target":"hyper::proto::h1::conn","line":293,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":70190,"time":"2022-05-13T16:27:33.108539Z","target":"hyper::proto::h1::conn","line":467,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":70190,"time":"2022-05-13T16:27:33.10856Z","target":"hyper::proto::h1::conn","line":731,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":70190,"time":"2022-05-13T16:27:33.108595Z","target":"hyper::proto::h1::conn","line":731,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", api.devnet.solana.com)","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":70190,"time":"2022-05-13T16:27:33.108621Z","target":"hyper::client::pool","line":329,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/client/pool.rs"}
{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":70190,"time":"2022-05-13T16:27:33.108637Z","target":"hyper::client::pool","line":376,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/client/pool.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":70190,"time":"2022-05-13T16:27:33.108872Z","target":"hyper::proto::h1::conn","line":731,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"take? (\"https\", api.devnet.solana.com): expiration = Some(90s)","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":70190,"time":"2022-05-13T16:27:33.613289Z","target":"hyper::client::pool","line":610,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/client/pool.rs"}
{"v":0,"name":"sugar","msg":"reuse idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":70190,"time":"2022-05-13T16:27:33.613332Z","target":"hyper::client::pool","line":250,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/client/pool.rs"}
{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":70190,"time":"2022-05-13T16:27:33.613367Z","target":"hyper::proto::h1::role","line":105,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs"}
{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(159))","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":70190,"time":"2022-05-13T16:27:33.613387Z","target":"hyper::proto::h1::role","line":1046,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs"}
{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":70190,"time":"2022-05-13T16:27:33.613403Z","target":"hyper::proto::h1::role","line":105,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs"}
{"v":0,"name":"sugar","msg":"sized write, len = 159","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":70190,"time":"2022-05-13T16:27:33.613416Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/encode.rs"}
{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":70190,"time":"2022-05-13T16:27:33.613428Z","target":"hyper::proto::h1::io","line":569,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/io.rs","self.len":114,"buf.len":159}
{"v":0,"name":"sugar","msg":"flushed 273 bytes","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":70190,"time":"2022-05-13T16:27:33.613534Z","target":"hyper::proto::h1::io","line":334,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/io.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":70190,"time":"2022-05-13T16:27:33.613553Z","target":"hyper::proto::h1::conn","line":731,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":70190,"time":"2022-05-13T16:27:33.641106Z","target":"hyper::proto::h1::conn","line":188,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"received 559 bytes","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":70190,"time":"2022-05-13T16:27:33.641163Z","target":"hyper::proto::h1::io","line":261,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/io.rs"}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":70190,"time":"2022-05-13T16:27:33.641177Z","target":"hyper::proto::h1::role","line":74,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs"}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":70190,"time":"2022-05-13T16:27:33.641191Z","target":"hyper::proto::h1::role","line":908,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs","bytes":559}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(382)","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":70190,"time":"2022-05-13T16:27:33.641204Z","target":"hyper::proto::h1::role","line":917,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs"}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":70190,"time":"2022-05-13T16:27:33.641225Z","target":"hyper::proto::h1::role","line":74,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs"}
{"v":0,"name":"sugar","msg":"parsed 11 headers","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":70190,"time":"2022-05-13T16:27:33.641237Z","target":"hyper::proto::h1::io","line":205,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/io.rs"}
{"v":0,"name":"sugar","msg":"incoming body is content-length (177 bytes)","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":70190,"time":"2022-05-13T16:27:33.641246Z","target":"hyper::proto::h1::conn","line":217,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"decode; state=Length(177)","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":70190,"time":"2022-05-13T16:27:33.64126Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/decode.rs"}
{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":70190,"time":"2022-05-13T16:27:33.64127Z","target":"hyper::proto::h1::conn","line":293,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":70190,"time":"2022-05-13T16:27:33.641284Z","target":"hyper::proto::h1::conn","line":467,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":70190,"time":"2022-05-13T16:27:33.641299Z","target":"hyper::proto::h1::conn","line":731,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":70190,"time":"2022-05-13T16:27:33.641309Z","target":"hyper::proto::h1::conn","line":731,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", api.devnet.solana.com)","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":70190,"time":"2022-05-13T16:27:33.641326Z","target":"hyper::client::pool","line":329,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/client/pool.rs"}
{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":70190,"time":"2022-05-13T16:27:33.641337Z","target":"hyper::client::pool","line":376,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/client/pool.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":70190,"time":"2022-05-13T16:27:33.641422Z","target":"hyper::proto::h1::conn","line":731,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"take? (\"https\", api.devnet.solana.com): expiration = Some(90s)","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":70190,"time":"2022-05-13T16:27:33.641465Z","target":"hyper::client::pool","line":610,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/client/pool.rs"}
{"v":0,"name":"sugar","msg":"reuse idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":70190,"time":"2022-05-13T16:27:33.641479Z","target":"hyper::client::pool","line":250,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/client/pool.rs"}
{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":70190,"time":"2022-05-13T16:27:33.641499Z","target":"hyper::proto::h1::role","line":105,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs"}
{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(138))","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":70190,"time":"2022-05-13T16:27:33.641514Z","target":"hyper::proto::h1::role","line":1046,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs"}
{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":70190,"time":"2022-05-13T16:27:33.641526Z","target":"hyper::proto::h1::role","line":105,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs"}
{"v":0,"name":"sugar","msg":"sized write, len = 138","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":70190,"time":"2022-05-13T16:27:33.641537Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/encode.rs"}
{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":70190,"time":"2022-05-13T16:27:33.641546Z","target":"hyper::proto::h1::io","line":569,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/io.rs","self.len":114,"buf.len":138}
{"v":0,"name":"sugar","msg":"flushed 252 bytes","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":70190,"time":"2022-05-13T16:27:33.641608Z","target":"hyper::proto::h1::io","line":334,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/io.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":70190,"time":"2022-05-13T16:27:33.641623Z","target":"hyper::proto::h1::conn","line":731,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":70190,"time":"2022-05-13T16:27:33.66879Z","target":"hyper::proto::h1::conn","line":188,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"received 460 bytes","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":70190,"time":"2022-05-13T16:27:33.668849Z","target":"hyper::proto::h1::io","line":261,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/io.rs"}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":70190,"time":"2022-05-13T16:27:33.668865Z","target":"hyper::proto::h1::role","line":74,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs"}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":70190,"time":"2022-05-13T16:27:33.668881Z","target":"hyper::proto::h1::role","line":908,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs","bytes":460}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(381)","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":70190,"time":"2022-05-13T16:27:33.668897Z","target":"hyper::proto::h1::role","line":917,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs"}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":70190,"time":"2022-05-13T16:27:33.668923Z","target":"hyper::proto::h1::role","line":74,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs"}
{"v":0,"name":"sugar","msg":"parsed 11 headers","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":70190,"time":"2022-05-13T16:27:33.668937Z","target":"hyper::proto::h1::io","line":205,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/io.rs"}
{"v":0,"name":"sugar","msg":"incoming body is content-length (79 bytes)","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":70190,"time":"2022-05-13T16:27:33.668947Z","target":"hyper::proto::h1::conn","line":217,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"decode; state=Length(79)","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":70190,"time":"2022-05-13T16:27:33.668964Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/decode.rs"}
{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":70190,"time":"2022-05-13T16:27:33.668975Z","target":"hyper::proto::h1::conn","line":293,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":70190,"time":"2022-05-13T16:27:33.668992Z","target":"hyper::proto::h1::conn","line":467,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":70190,"time":"2022-05-13T16:27:33.669009Z","target":"hyper::proto::h1::conn","line":731,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":70190,"time":"2022-05-13T16:27:33.669021Z","target":"hyper::proto::h1::conn","line":731,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", api.devnet.solana.com)","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":70190,"time":"2022-05-13T16:27:33.669041Z","target":"hyper::client::pool","line":329,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/client/pool.rs"}
{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":70190,"time":"2022-05-13T16:27:33.669053Z","target":"hyper::client::pool","line":376,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/client/pool.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":70190,"time":"2022-05-13T16:27:33.66913Z","target":"hyper::proto::h1::conn","line":731,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"take? (\"https\", api.devnet.solana.com): expiration = Some(90s)","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":70190,"time":"2022-05-13T16:27:34.172667Z","target":"hyper::client::pool","line":610,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/client/pool.rs"}
{"v":0,"name":"sugar","msg":"reuse idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":70190,"time":"2022-05-13T16:27:34.172709Z","target":"hyper::client::pool","line":250,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/client/pool.rs"}
{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":70190,"time":"2022-05-13T16:27:34.172743Z","target":"hyper::proto::h1::role","line":105,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs"}
{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=POST, body=Some(Known(160))","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":70190,"time":"2022-05-13T16:27:34.172763Z","target":"hyper::proto::h1::role","line":1046,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs"}
{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":70190,"time":"2022-05-13T16:27:34.172779Z","target":"hyper::proto::h1::role","line":105,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs"}
{"v":0,"name":"sugar","msg":"sized write, len = 160","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":70190,"time":"2022-05-13T16:27:34.172792Z","target":"hyper::proto::h1::encode","line":159,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/encode.rs"}
{"v":0,"name":"sugar","msg":"buffer.flatten","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":70190,"time":"2022-05-13T16:27:34.172804Z","target":"hyper::proto::h1::io","line":569,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/io.rs","self.len":114,"buf.len":160}
{"v":0,"name":"sugar","msg":"flushed 274 bytes","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":70190,"time":"2022-05-13T16:27:34.172914Z","target":"hyper::proto::h1::io","line":334,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/io.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":70190,"time":"2022-05-13T16:27:34.172934Z","target":"hyper::proto::h1::conn","line":731,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":70190,"time":"2022-05-13T16:27:34.200707Z","target":"hyper::proto::h1::conn","line":188,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"received 560 bytes","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":70190,"time":"2022-05-13T16:27:34.200779Z","target":"hyper::proto::h1::io","line":261,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/io.rs"}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":70190,"time":"2022-05-13T16:27:34.200799Z","target":"hyper::proto::h1::role","line":74,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs"}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":70190,"time":"2022-05-13T16:27:34.200818Z","target":"hyper::proto::h1::role","line":908,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs","bytes":560}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(382)","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":70190,"time":"2022-05-13T16:27:34.200837Z","target":"hyper::proto::h1::role","line":917,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs"}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":70190,"time":"2022-05-13T16:27:34.200866Z","target":"hyper::proto::h1::role","line":74,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs"}
{"v":0,"name":"sugar","msg":"parsed 11 headers","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":70190,"time":"2022-05-13T16:27:34.200883Z","target":"hyper::proto::h1::io","line":205,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/io.rs"}
{"v":0,"name":"sugar","msg":"incoming body is content-length (178 bytes)","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":70190,"time":"2022-05-13T16:27:34.200896Z","target":"hyper::proto::h1::conn","line":217,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"decode; state=Length(178)","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":70190,"time":"2022-05-13T16:27:34.200916Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/decode.rs"}
{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":70190,"time":"2022-05-13T16:27:34.20093Z","target":"hyper::proto::h1::conn","line":293,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":70190,"time":"2022-05-13T16:27:34.200949Z","target":"hyper::proto::h1::conn","line":467,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":70190,"time":"2022-05-13T16:27:34.20097Z","target":"hyper::proto::h1::conn","line":731,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":70190,"time":"2022-05-13T16:27:34.200985Z","target":"hyper::proto::h1::conn","line":731,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", api.devnet.solana.com)","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":70190,"time":"2022-05-13T16:27:34.201009Z","target":"hyper::client::pool","line":329,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/client/pool.rs"}
{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", api.devnet.solana.com)","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":70190,"time":"2022-05-13T16:27:34.201026Z","target":"hyper::client::pool","line":376,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/client/pool.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":70190,"time":"2022-05-13T16:27:34.201118Z","target":"hyper::proto::h1::conn","line":731,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"Minted! TxId: aqSBFRAtgAW4spw8qfnC9Bq8FXuPaHS64pLW37wGyUpf4dKovvtT7ssyYeFEZCr2pge1wfZTG678zKpugiTkDew","level":30,"hostname":"Tylers-MBP.attlocal.net","pid":70190,"time":"2022-05-13T16:27:34.201497Z","target":"sugar_cli::mint::process","line":417,"file":"src/mint/process.rs"}
{"v":0,"name":"sugar","msg":"Cleanup TxId: 3gj756AKhKa1mPexXHDqBf3VrHtUKZpoQ3GdWvrQ8QQodrhRa3a3Q9xCu1uTCwnnhFnGMERv6fbr7h3v2bbWrLr","level":30,"hostname":"Tylers-MBP.attlocal.net","pid":70190,"time":"2022-05-13T16:27:34.20154Z","target":"sugar_cli::mint::process","line":418,"file":"src/mint/process.rs"}
vel":10,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:27.885292Z","target":"hyper::client::pool","line":610,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/client/pool.rs"}
{"v":0,"name":"sugar","msg":"reuse idle connection for (\"https\", devnet.bundlr.network)","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:27.885305Z","target":"hyper::client::pool","line":250,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/client/pool.rs"}
{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:27.885353Z","target":"hyper::proto::h1::role","line":105,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs"}
{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=GET, body=None","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:27.885368Z","target":"hyper::proto::h1::role","line":1046,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs"}
{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:27.885378Z","target":"hyper::proto::h1::role","line":105,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs"}
{"v":0,"name":"sugar","msg":"flushed 136 bytes","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:27.885443Z","target":"hyper::proto::h1::io","line":334,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/io.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:27.885457Z","target":"hyper::proto::h1::conn","line":731,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:28.008314Z","target":"hyper::proto::h1::conn","line":188,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"received 714 bytes","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:28.008364Z","target":"hyper::proto::h1::io","line":261,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/io.rs"}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:28.008377Z","target":"hyper::proto::h1::role","line":74,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs"}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:28.008389Z","target":"hyper::proto::h1::role","line":908,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs","bytes":714}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(696)","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:28.008401Z","target":"hyper::proto::h1::role","line":917,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs"}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:28.008417Z","target":"hyper::proto::h1::role","line":74,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs"}
{"v":0,"name":"sugar","msg":"parsed 11 headers","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:28.008429Z","target":"hyper::proto::h1::io","line":205,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/io.rs"}
{"v":0,"name":"sugar","msg":"incoming body is content-length (18 bytes)","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:28.008437Z","target":"hyper::proto::h1::conn","line":217,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"decode; state=Length(18)","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:28.008453Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/decode.rs"}
{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:28.008461Z","target":"hyper::proto::h1::conn","line":293,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:28.008479Z","target":"hyper::proto::h1::conn","line":467,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:28.008492Z","target":"hyper::proto::h1::conn","line":731,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:28.008501Z","target":"hyper::proto::h1::conn","line":731,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", devnet.bundlr.network)","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:28.008502Z","target":"hyper::client::pool","line":329,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/client/pool.rs"}
{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", devnet.bundlr.network)","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:28.008524Z","target":"hyper::client::pool","line":376,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/client/pool.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:28.00857Z","target":"hyper::proto::h1::conn","line":731,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"Getting balance for address: 5VCuBQA4KCpovL3h9RJqD9ufZXdoiEkFczTKCvewY1ZS","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:29.01002Z","target":"sugar_cli::upload::bundlr","line":166,"file":"src/upload/bundlr.rs"}
{"v":0,"name":"sugar","msg":"take? (\"https\", devnet.bundlr.network): expiration = Some(90s)","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:29.010076Z","target":"hyper::client::pool","line":610,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/client/pool.rs"}
{"v":0,"name":"sugar","msg":"reuse idle connection for (\"https\", devnet.bundlr.network)","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:29.010091Z","target":"hyper::client::pool","line":250,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/client/pool.rs"}
{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:29.010135Z","target":"hyper::proto::h1::role","line":105,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs"}
{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=GET, body=None","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:29.01016Z","target":"hyper::proto::h1::role","line":1046,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs"}
{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:29.010173Z","target":"hyper::proto::h1::role","line":105,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs"}
{"v":0,"name":"sugar","msg":"flushed 136 bytes","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:29.010263Z","target":"hyper::proto::h1::io","line":334,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/io.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:29.010278Z","target":"hyper::proto::h1::conn","line":731,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:29.142518Z","target":"hyper::proto::h1::conn","line":188,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"received 706 bytes","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:29.142601Z","target":"hyper::proto::h1::io","line":261,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/io.rs"}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:29.142623Z","target":"hyper::proto::h1::role","line":74,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs"}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:29.142644Z","target":"hyper::proto::h1::role","line":908,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs","bytes":706}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(688)","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:29.142663Z","target":"hyper::proto::h1::role","line":917,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs"}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:29.142708Z","target":"hyper::proto::h1::role","line":74,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs"}
{"v":0,"name":"sugar","msg":"parsed 11 headers","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:29.142727Z","target":"hyper::proto::h1::io","line":205,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/io.rs"}
{"v":0,"name":"sugar","msg":"incoming body is content-length (18 bytes)","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:29.14274Z","target":"hyper::proto::h1::conn","line":217,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"decode; state=Length(18)","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:29.142787Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/decode.rs"}
{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:29.142803Z","target":"hyper::proto::h1::conn","line":293,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:29.142848Z","target":"hyper::proto::h1::conn","line":467,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:29.142877Z","target":"hyper::proto::h1::conn","line":731,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", devnet.bundlr.network)","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:29.142913Z","target":"hyper::client::pool","line":329,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/client/pool.rs"}
{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", devnet.bundlr.network)","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:29.142959Z","target":"hyper::client::pool","line":376,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/client/pool.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:29.142925Z","target":"hyper::proto::h1::conn","line":731,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:29.143047Z","target":"hyper::proto::h1::conn","line":731,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"Getting balance for address: 5VCuBQA4KCpovL3h9RJqD9ufZXdoiEkFczTKCvewY1ZS","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:30.144908Z","target":"sugar_cli::upload::bundlr","line":166,"file":"src/upload/bundlr.rs"}
{"v":0,"name":"sugar","msg":"take? (\"https\", devnet.bundlr.network): expiration = Some(90s)","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:30.144976Z","target":"hyper::client::pool","line":610,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/client/pool.rs"}
{"v":0,"name":"sugar","msg":"reuse idle connection for (\"https\", devnet.bundlr.network)","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:30.144993Z","target":"hyper::client::pool","line":250,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/client/pool.rs"}
{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:30.145055Z","target":"hyper::proto::h1::role","line":105,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs"}
{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=GET, body=None","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:30.145091Z","target":"hyper::proto::h1::role","line":1046,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs"}
{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:30.145107Z","target":"hyper::proto::h1::role","line":105,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs"}
{"v":0,"name":"sugar","msg":"flushed 136 bytes","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:30.14523Z","target":"hyper::proto::h1::io","line":334,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/io.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:30.145249Z","target":"hyper::proto::h1::conn","line":731,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:30.274207Z","target":"hyper::proto::h1::conn","line":188,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"received 724 bytes","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:30.274297Z","target":"hyper::proto::h1::io","line":261,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/io.rs"}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:30.27432Z","target":"hyper::proto::h1::role","line":74,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs"}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:30.274342Z","target":"hyper::proto::h1::role","line":908,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs","bytes":724}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(706)","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:30.274362Z","target":"hyper::proto::h1::role","line":917,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs"}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:30.274389Z","target":"hyper::proto::h1::role","line":74,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs"}
{"v":0,"name":"sugar","msg":"parsed 11 headers","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:30.274406Z","target":"hyper::proto::h1::io","line":205,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/io.rs"}
{"v":0,"name":"sugar","msg":"incoming body is content-length (18 bytes)","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:30.274419Z","target":"hyper::proto::h1::conn","line":217,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"decode; state=Length(18)","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:30.274449Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/decode.rs"}
{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:30.274468Z","target":"hyper::proto::h1::conn","line":293,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:30.274488Z","target":"hyper::proto::h1::conn","line":467,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:30.274509Z","target":"hyper::proto::h1::conn","line":731,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:30.274525Z","target":"hyper::proto::h1::conn","line":731,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", devnet.bundlr.network)","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:30.274555Z","target":"hyper::client::pool","line":329,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/client/pool.rs"}
{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", devnet.bundlr.network)","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:30.274595Z","target":"hyper::client::pool","line":376,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/client/pool.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:30.274667Z","target":"hyper::proto::h1::conn","line":731,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"Getting balance for address: 5VCuBQA4KCpovL3h9RJqD9ufZXdoiEkFczTKCvewY1ZS","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:31.276419Z","target":"sugar_cli::upload::bundlr","line":166,"file":"src/upload/bundlr.rs"}
{"v":0,"name":"sugar","msg":"take? (\"https\", devnet.bundlr.network): expiration = Some(90s)","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:31.276503Z","target":"hyper::client::pool","line":610,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/client/pool.rs"}
{"v":0,"name":"sugar","msg":"reuse idle connection for (\"https\", devnet.bundlr.network)","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:31.276528Z","target":"hyper::client::pool","line":250,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/client/pool.rs"}
{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:31.27659Z","target":"hyper::proto::h1::role","line":105,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs"}
{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=GET, body=None","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:31.276617Z","target":"hyper::proto::h1::role","line":1046,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs"}
{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:31.276636Z","target":"hyper::proto::h1::role","line":105,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs"}
{"v":0,"name":"sugar","msg":"flushed 136 bytes","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:31.276742Z","target":"hyper::proto::h1::io","line":334,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/io.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:31.276769Z","target":"hyper::proto::h1::conn","line":731,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:31.398784Z","target":"hyper::proto::h1::conn","line":188,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"received 712 bytes","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:31.398844Z","target":"hyper::proto::h1::io","line":261,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/io.rs"}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:31.398861Z","target":"hyper::proto::h1::role","line":74,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs"}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:31.398878Z","target":"hyper::proto::h1::role","line":908,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs","bytes":712}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(694)","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:31.398894Z","target":"hyper::proto::h1::role","line":917,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs"}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:31.398915Z","target":"hyper::proto::h1::role","line":74,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs"}
{"v":0,"name":"sugar","msg":"parsed 11 headers","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:31.39893Z","target":"hyper::proto::h1::io","line":205,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/io.rs"}
{"v":0,"name":"sugar","msg":"incoming body is content-length (18 bytes)","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:31.398941Z","target":"hyper::proto::h1::conn","line":217,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"decode; state=Length(18)","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:31.398962Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/decode.rs"}
{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:31.398974Z","target":"hyper::proto::h1::conn","line":293,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:31.39899Z","target":"hyper::proto::h1::conn","line":467,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:31.399011Z","target":"hyper::proto::h1::conn","line":731,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:31.399025Z","target":"hyper::proto::h1::conn","line":731,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", devnet.bundlr.network)","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:31.399041Z","target":"hyper::client::pool","line":329,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/client/pool.rs"}
{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", devnet.bundlr.network)","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:31.399072Z","target":"hyper::client::pool","line":376,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/client/pool.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:31.399113Z","target":"hyper::proto::h1::conn","line":731,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"Getting balance for address: 5VCuBQA4KCpovL3h9RJqD9ufZXdoiEkFczTKCvewY1ZS","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:32.400322Z","target":"sugar_cli::upload::bundlr","line":166,"file":"src/upload/bundlr.rs"}
{"v":0,"name":"sugar","msg":"take? (\"https\", devnet.bundlr.network): expiration = Some(90s)","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:32.400392Z","target":"hyper::client::pool","line":610,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/client/pool.rs"}
{"v":0,"name":"sugar","msg":"reuse idle connection for (\"https\", devnet.bundlr.network)","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:32.400411Z","target":"hyper::client::pool","line":250,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/client/pool.rs"}
{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:32.400464Z","target":"hyper::proto::h1::role","line":105,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs"}
{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=GET, body=None","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:32.400513Z","target":"hyper::proto::h1::role","line":1046,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs"}
{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:32.400532Z","target":"hyper::proto::h1::role","line":105,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs"}
{"v":0,"name":"sugar","msg":"flushed 136 bytes","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:32.400671Z","target":"hyper::proto::h1::io","line":334,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/io.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:32.400705Z","target":"hyper::proto::h1::conn","line":731,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:32.529225Z","target":"hyper::proto::h1::conn","line":188,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"received 702 bytes","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:32.529281Z","target":"hyper::proto::h1::io","line":261,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/io.rs"}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:32.529293Z","target":"hyper::proto::h1::role","line":74,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs"}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:32.529306Z","target":"hyper::proto::h1::role","line":908,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs","bytes":702}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(684)","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:32.529317Z","target":"hyper::proto::h1::role","line":917,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs"}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:32.529333Z","target":"hyper::proto::h1::role","line":74,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs"}
{"v":0,"name":"sugar","msg":"parsed 11 headers","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:32.529344Z","target":"hyper::proto::h1::io","line":205,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/io.rs"}
{"v":0,"name":"sugar","msg":"incoming body is content-length (18 bytes)","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:32.529351Z","target":"hyper::proto::h1::conn","line":217,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"decode; state=Length(18)","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:32.529368Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/decode.rs"}
{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:32.529376Z","target":"hyper::proto::h1::conn","line":293,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:32.529387Z","target":"hyper::proto::h1::conn","line":467,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:32.5294Z","target":"hyper::proto::h1::conn","line":731,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:32.529412Z","target":"hyper::proto::h1::conn","line":731,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", devnet.bundlr.network)","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:32.529414Z","target":"hyper::client::pool","line":329,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/client/pool.rs"}
{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", devnet.bundlr.network)","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:32.529437Z","target":"hyper::client::pool","line":376,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/client/pool.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:32.529472Z","target":"hyper::proto::h1::conn","line":731,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"Getting balance for address: 5VCuBQA4KCpovL3h9RJqD9ufZXdoiEkFczTKCvewY1ZS","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:33.531591Z","target":"sugar_cli::upload::bundlr","line":166,"file":"src/upload/bundlr.rs"}
{"v":0,"name":"sugar","msg":"take? (\"https\", devnet.bundlr.network): expiration = Some(90s)","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:33.53168Z","target":"hyper::client::pool","line":610,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/client/pool.rs"}
{"v":0,"name":"sugar","msg":"reuse idle connection for (\"https\", devnet.bundlr.network)","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:33.531704Z","target":"hyper::client::pool","line":250,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/client/pool.rs"}
{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:33.531768Z","target":"hyper::proto::h1::role","line":105,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs"}
{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=GET, body=None","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:33.531794Z","target":"hyper::proto::h1::role","line":1046,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs"}
{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:33.531811Z","target":"hyper::proto::h1::role","line":105,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs"}
{"v":0,"name":"sugar","msg":"flushed 136 bytes","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:33.531946Z","target":"hyper::proto::h1::io","line":334,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/io.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:33.531972Z","target":"hyper::proto::h1::conn","line":731,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:33.653158Z","target":"hyper::proto::h1::conn","line":188,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"received 708 bytes","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:33.653236Z","target":"hyper::proto::h1::io","line":261,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/io.rs"}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:33.653258Z","target":"hyper::proto::h1::role","line":74,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs"}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:33.653279Z","target":"hyper::proto::h1::role","line":908,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs","bytes":708}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(690)","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:33.653299Z","target":"hyper::proto::h1::role","line":917,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs"}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:33.653324Z","target":"hyper::proto::h1::role","line":74,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs"}
{"v":0,"name":"sugar","msg":"parsed 11 headers","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:33.653342Z","target":"hyper::proto::h1::io","line":205,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/io.rs"}
{"v":0,"name":"sugar","msg":"incoming body is content-length (18 bytes)","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:33.653355Z","target":"hyper::proto::h1::conn","line":217,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"decode; state=Length(18)","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:33.653382Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/decode.rs"}
{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:33.653397Z","target":"hyper::proto::h1::conn","line":293,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:33.653417Z","target":"hyper::proto::h1::conn","line":467,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:33.653439Z","target":"hyper::proto::h1::conn","line":731,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:33.653455Z","target":"hyper::proto::h1::conn","line":731,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", devnet.bundlr.network)","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:33.653483Z","target":"hyper::client::pool","line":329,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/client/pool.rs"}
{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", devnet.bundlr.network)","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:33.653522Z","target":"hyper::client::pool","line":376,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/client/pool.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:33.653593Z","target":"hyper::proto::h1::conn","line":731,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"Getting balance for address: 5VCuBQA4KCpovL3h9RJqD9ufZXdoiEkFczTKCvewY1ZS","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:34.655261Z","target":"sugar_cli::upload::bundlr","line":166,"file":"src/upload/bundlr.rs"}
{"v":0,"name":"sugar","msg":"take? (\"https\", devnet.bundlr.network): expiration = Some(90s)","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:34.655321Z","target":"hyper::client::pool","line":610,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/client/pool.rs"}
{"v":0,"name":"sugar","msg":"reuse idle connection for (\"https\", devnet.bundlr.network)","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:34.655336Z","target":"hyper::client::pool","line":250,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/client/pool.rs"}
{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:34.655382Z","target":"hyper::proto::h1::role","line":105,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs"}
{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=GET, body=None","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:34.6554Z","target":"hyper::proto::h1::role","line":1046,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs"}
{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:34.655412Z","target":"hyper::proto::h1::role","line":105,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs"}
{"v":0,"name":"sugar","msg":"flushed 136 bytes","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:34.655506Z","target":"hyper::proto::h1::io","line":334,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/io.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:34.655525Z","target":"hyper::proto::h1::conn","line":731,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:34.777577Z","target":"hyper::proto::h1::conn","line":188,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"received 708 bytes","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:34.77766Z","target":"hyper::proto::h1::io","line":261,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/io.rs"}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:34.777688Z","target":"hyper::proto::h1::role","line":74,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs"}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:34.777711Z","target":"hyper::proto::h1::role","line":908,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs","bytes":708}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(690)","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:34.777731Z","target":"hyper::proto::h1::role","line":917,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs"}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:34.777758Z","target":"hyper::proto::h1::role","line":74,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs"}
{"v":0,"name":"sugar","msg":"parsed 11 headers","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:34.777776Z","target":"hyper::proto::h1::io","line":205,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/io.rs"}
{"v":0,"name":"sugar","msg":"incoming body is content-length (18 bytes)","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:34.777789Z","target":"hyper::proto::h1::conn","line":217,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"decode; state=Length(18)","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:34.777818Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/decode.rs"}
{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:34.777833Z","target":"hyper::proto::h1::conn","line":293,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:34.777854Z","target":"hyper::proto::h1::conn","line":467,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:34.777875Z","target":"hyper::proto::h1::conn","line":731,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:34.777891Z","target":"hyper::proto::h1::conn","line":731,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", devnet.bundlr.network)","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:34.777887Z","target":"hyper::client::pool","line":329,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/client/pool.rs"}
{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", devnet.bundlr.network)","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:34.777942Z","target":"hyper::client::pool","line":376,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/client/pool.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:34.778039Z","target":"hyper::proto::h1::conn","line":731,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"Getting balance for address: 5VCuBQA4KCpovL3h9RJqD9ufZXdoiEkFczTKCvewY1ZS","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:35.779362Z","target":"sugar_cli::upload::bundlr","line":166,"file":"src/upload/bundlr.rs"}
{"v":0,"name":"sugar","msg":"take? (\"https\", devnet.bundlr.network): expiration = Some(90s)","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:35.779436Z","target":"hyper::client::pool","line":610,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/client/pool.rs"}
{"v":0,"name":"sugar","msg":"reuse idle connection for (\"https\", devnet.bundlr.network)","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:35.779454Z","target":"hyper::client::pool","line":250,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/client/pool.rs"}
{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:35.779531Z","target":"hyper::proto::h1::role","line":105,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs"}
{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=GET, body=None","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:35.779562Z","target":"hyper::proto::h1::role","line":1046,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs"}
{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:35.779577Z","target":"hyper::proto::h1::role","line":105,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs"}
{"v":0,"name":"sugar","msg":"flushed 136 bytes","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:35.779668Z","target":"hyper::proto::h1::io","line":334,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/io.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:35.779686Z","target":"hyper::proto::h1::conn","line":731,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:35.897202Z","target":"hyper::proto::h1::conn","line":188,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"received 710 bytes","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:35.897261Z","target":"hyper::proto::h1::io","line":261,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/io.rs"}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:35.897279Z","target":"hyper::proto::h1::role","line":74,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs"}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:35.897297Z","target":"hyper::proto::h1::role","line":908,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs","bytes":710}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(692)","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:35.897315Z","target":"hyper::proto::h1::role","line":917,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs"}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:35.897337Z","target":"hyper::proto::h1::role","line":74,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs"}
{"v":0,"name":"sugar","msg":"parsed 11 headers","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:35.897352Z","target":"hyper::proto::h1::io","line":205,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/io.rs"}
{"v":0,"name":"sugar","msg":"incoming body is content-length (18 bytes)","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:35.897363Z","target":"hyper::proto::h1::conn","line":217,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"decode; state=Length(18)","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:35.897388Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/decode.rs"}
{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:35.8974Z","target":"hyper::proto::h1::conn","line":293,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:35.897416Z","target":"hyper::proto::h1::conn","line":467,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:35.897433Z","target":"hyper::proto::h1::conn","line":731,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:35.897446Z","target":"hyper::proto::h1::conn","line":731,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", devnet.bundlr.network)","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:35.897461Z","target":"hyper::client::pool","line":329,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/client/pool.rs"}
{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", devnet.bundlr.network)","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:35.897495Z","target":"hyper::client::pool","line":376,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/client/pool.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:35.897556Z","target":"hyper::proto::h1::conn","line":731,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"Getting balance for address: 5VCuBQA4KCpovL3h9RJqD9ufZXdoiEkFczTKCvewY1ZS","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:36.899194Z","target":"sugar_cli::upload::bundlr","line":166,"file":"src/upload/bundlr.rs"}
{"v":0,"name":"sugar","msg":"take? (\"https\", devnet.bundlr.network): expiration = Some(90s)","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:36.899268Z","target":"hyper::client::pool","line":610,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/client/pool.rs"}
{"v":0,"name":"sugar","msg":"reuse idle connection for (\"https\", devnet.bundlr.network)","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:36.899288Z","target":"hyper::client::pool","line":250,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/client/pool.rs"}
{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:36.899356Z","target":"hyper::proto::h1::role","line":105,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs"}
{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=GET, body=None","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:36.899392Z","target":"hyper::proto::h1::role","line":1046,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs"}
{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:36.899409Z","target":"hyper::proto::h1::role","line":105,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs"}
{"v":0,"name":"sugar","msg":"flushed 136 bytes","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:36.899523Z","target":"hyper::proto::h1::io","line":334,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/io.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:36.899545Z","target":"hyper::proto::h1::conn","line":731,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:37.039706Z","target":"hyper::proto::h1::conn","line":188,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"received 712 bytes","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:37.039789Z","target":"hyper::proto::h1::io","line":261,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/io.rs"}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:37.039811Z","target":"hyper::proto::h1::role","line":74,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs"}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:37.039832Z","target":"hyper::proto::h1::role","line":908,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs","bytes":712}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(694)","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:37.039852Z","target":"hyper::proto::h1::role","line":917,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs"}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:37.039882Z","target":"hyper::proto::h1::role","line":74,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs"}
{"v":0,"name":"sugar","msg":"parsed 11 headers","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:37.0399Z","target":"hyper::proto::h1::io","line":205,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/io.rs"}
{"v":0,"name":"sugar","msg":"incoming body is content-length (18 bytes)","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:37.039913Z","target":"hyper::proto::h1::conn","line":217,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"decode; state=Length(18)","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:37.039942Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/decode.rs"}
{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:37.039956Z","target":"hyper::proto::h1::conn","line":293,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:37.039977Z","target":"hyper::proto::h1::conn","line":467,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:37.039998Z","target":"hyper::proto::h1::conn","line":731,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:37.040013Z","target":"hyper::proto::h1::conn","line":731,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", devnet.bundlr.network)","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:37.040015Z","target":"hyper::client::pool","line":329,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/client/pool.rs"}
{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", devnet.bundlr.network)","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:37.040056Z","target":"hyper::client::pool","line":376,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/client/pool.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:37.040136Z","target":"hyper::proto::h1::conn","line":731,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"Getting balance for address: 5VCuBQA4KCpovL3h9RJqD9ufZXdoiEkFczTKCvewY1ZS","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:38.042285Z","target":"sugar_cli::upload::bundlr","line":166,"file":"src/upload/bundlr.rs"}
{"v":0,"name":"sugar","msg":"take? (\"https\", devnet.bundlr.network): expiration = Some(90s)","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:38.042375Z","target":"hyper::client::pool","line":610,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/client/pool.rs"}
{"v":0,"name":"sugar","msg":"reuse idle connection for (\"https\", devnet.bundlr.network)","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:38.042404Z","target":"hyper::client::pool","line":250,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/client/pool.rs"}
{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:38.042472Z","target":"hyper::proto::h1::role","line":105,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs"}
{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=GET, body=None","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:38.042536Z","target":"hyper::proto::h1::role","line":1046,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs"}
{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:38.042564Z","target":"hyper::proto::h1::role","line":105,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs"}
{"v":0,"name":"sugar","msg":"flushed 136 bytes","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:38.042758Z","target":"hyper::proto::h1::io","line":334,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/io.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:38.042809Z","target":"hyper::proto::h1::conn","line":731,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:38.165049Z","target":"hyper::proto::h1::conn","line":188,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"received 686 bytes","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:38.165164Z","target":"hyper::proto::h1::io","line":261,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/io.rs"}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:38.165196Z","target":"hyper::proto::h1::role","line":74,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs"}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:38.165228Z","target":"hyper::proto::h1::role","line":908,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs","bytes":686}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(686)","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:38.165257Z","target":"hyper::proto::h1::role","line":917,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs"}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:38.165297Z","target":"hyper::proto::h1::role","line":74,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs"}
{"v":0,"name":"sugar","msg":"parsed 11 headers","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:38.165324Z","target":"hyper::proto::h1::io","line":205,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/io.rs"}
{"v":0,"name":"sugar","msg":"incoming body is content-length (18 bytes)","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:38.165352Z","target":"hyper::proto::h1::conn","line":217,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"decode; state=Length(18)","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:38.165395Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/decode.rs"}
{"v":0,"name":"sugar","msg":"received 18 bytes","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:38.165436Z","target":"hyper::proto::h1::io","line":261,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/io.rs"}
{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:38.165458Z","target":"hyper::proto::h1::conn","line":293,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:38.165504Z","target":"hyper::proto::h1::conn","line":467,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:38.165549Z","target":"hyper::proto::h1::conn","line":731,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:38.165576Z","target":"hyper::proto::h1::conn","line":731,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", devnet.bundlr.network)","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:38.165603Z","target":"hyper::client::pool","line":329,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/client/pool.rs"}
{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", devnet.bundlr.network)","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:38.165625Z","target":"hyper::client::pool","line":376,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/client/pool.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:38.165753Z","target":"hyper::proto::h1::conn","line":731,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"Getting balance for address: 5VCuBQA4KCpovL3h9RJqD9ufZXdoiEkFczTKCvewY1ZS","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:39.167139Z","target":"sugar_cli::upload::bundlr","line":166,"file":"src/upload/bundlr.rs"}
{"v":0,"name":"sugar","msg":"take? (\"https\", devnet.bundlr.network): expiration = Some(90s)","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:39.167191Z","target":"hyper::client::pool","line":610,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/client/pool.rs"}
{"v":0,"name":"sugar","msg":"reuse idle connection for (\"https\", devnet.bundlr.network)","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:39.167205Z","target":"hyper::client::pool","line":250,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/client/pool.rs"}
{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:39.167249Z","target":"hyper::proto::h1::role","line":105,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs"}
{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=GET, body=None","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:39.167276Z","target":"hyper::proto::h1::role","line":1046,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs"}
{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:39.167288Z","target":"hyper::proto::h1::role","line":105,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs"}
{"v":0,"name":"sugar","msg":"flushed 136 bytes","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:39.167377Z","target":"hyper::proto::h1::io","line":334,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/io.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:39.167393Z","target":"hyper::proto::h1::conn","line":731,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:39.299811Z","target":"hyper::proto::h1::conn","line":188,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"received 708 bytes","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:39.299887Z","target":"hyper::proto::h1::io","line":261,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/io.rs"}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:39.299904Z","target":"hyper::proto::h1::role","line":74,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs"}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:39.299921Z","target":"hyper::proto::h1::role","line":908,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs","bytes":708}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(690)","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:39.29994Z","target":"hyper::proto::h1::role","line":917,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs"}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:39.299961Z","target":"hyper::proto::h1::role","line":74,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs"}
{"v":0,"name":"sugar","msg":"parsed 11 headers","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:39.299975Z","target":"hyper::proto::h1::io","line":205,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/io.rs"}
{"v":0,"name":"sugar","msg":"incoming body is content-length (18 bytes)","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:39.299986Z","target":"hyper::proto::h1::conn","line":217,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"decode; state=Length(18)","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:39.300012Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/decode.rs"}
{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:39.300023Z","target":"hyper::proto::h1::conn","line":293,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:39.30004Z","target":"hyper::proto::h1::conn","line":467,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:39.300059Z","target":"hyper::proto::h1::conn","line":731,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", devnet.bundlr.network)","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:39.300066Z","target":"hyper::client::pool","line":329,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/client/pool.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:39.300072Z","target":"hyper::proto::h1::conn","line":731,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", devnet.bundlr.network)","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:39.300099Z","target":"hyper::client::pool","line":376,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/client/pool.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:39.300191Z","target":"hyper::proto::h1::conn","line":731,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"Getting balance for address: 5VCuBQA4KCpovL3h9RJqD9ufZXdoiEkFczTKCvewY1ZS","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:40.302088Z","target":"sugar_cli::upload::bundlr","line":166,"file":"src/upload/bundlr.rs"}
{"v":0,"name":"sugar","msg":"take? (\"https\", devnet.bundlr.network): expiration = Some(90s)","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:40.302155Z","target":"hyper::client::pool","line":610,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/client/pool.rs"}
{"v":0,"name":"sugar","msg":"reuse idle connection for (\"https\", devnet.bundlr.network)","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:40.302178Z","target":"hyper::client::pool","line":250,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/client/pool.rs"}
{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:40.302242Z","target":"hyper::proto::h1::role","line":105,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs"}
{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=GET, body=None","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:40.302275Z","target":"hyper::proto::h1::role","line":1046,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs"}
{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:40.302294Z","target":"hyper::proto::h1::role","line":105,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs"}
{"v":0,"name":"sugar","msg":"flushed 136 bytes","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:40.302421Z","target":"hyper::proto::h1::io","line":334,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/io.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:40.302448Z","target":"hyper::proto::h1::conn","line":731,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:40.447616Z","target":"hyper::proto::h1::conn","line":188,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"received 706 bytes","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:40.447691Z","target":"hyper::proto::h1::io","line":261,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/io.rs"}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:40.447712Z","target":"hyper::proto::h1::role","line":74,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs"}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:40.447733Z","target":"hyper::proto::h1::role","line":908,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs","bytes":706}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(688)","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:40.447752Z","target":"hyper::proto::h1::role","line":917,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs"}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:40.447778Z","target":"hyper::proto::h1::role","line":74,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs"}
{"v":0,"name":"sugar","msg":"parsed 11 headers","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:40.447795Z","target":"hyper::proto::h1::io","line":205,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/io.rs"}
{"v":0,"name":"sugar","msg":"incoming body is content-length (18 bytes)","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:40.447808Z","target":"hyper::proto::h1::conn","line":217,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"decode; state=Length(18)","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:40.447836Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/decode.rs"}
{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:40.447854Z","target":"hyper::proto::h1::conn","line":293,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:40.447874Z","target":"hyper::proto::h1::conn","line":467,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:40.447895Z","target":"hyper::proto::h1::conn","line":731,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:40.44791Z","target":"hyper::proto::h1::conn","line":731,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", devnet.bundlr.network)","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:40.447935Z","target":"hyper::client::pool","line":329,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/client/pool.rs"}
{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", devnet.bundlr.network)","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:40.447971Z","target":"hyper::client::pool","line":376,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/client/pool.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:40.448057Z","target":"hyper::proto::h1::conn","line":731,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"Getting balance for address: 5VCuBQA4KCpovL3h9RJqD9ufZXdoiEkFczTKCvewY1ZS","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:41.449413Z","target":"sugar_cli::upload::bundlr","line":166,"file":"src/upload/bundlr.rs"}
{"v":0,"name":"sugar","msg":"take? (\"https\", devnet.bundlr.network): expiration = Some(90s)","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:41.449483Z","target":"hyper::client::pool","line":610,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/client/pool.rs"}
{"v":0,"name":"sugar","msg":"reuse idle connection for (\"https\", devnet.bundlr.network)","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:41.449503Z","target":"hyper::client::pool","line":250,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/client/pool.rs"}
{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:41.449577Z","target":"hyper::proto::h1::role","line":105,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs"}
{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=GET, body=None","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:41.449615Z","target":"hyper::proto::h1::role","line":1046,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs"}
{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:41.449633Z","target":"hyper::proto::h1::role","line":105,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs"}
{"v":0,"name":"sugar","msg":"flushed 136 bytes","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:41.449755Z","target":"hyper::proto::h1::io","line":334,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/io.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:41.449779Z","target":"hyper::proto::h1::conn","line":731,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:41.568448Z","target":"hyper::proto::h1::conn","line":188,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"received 712 bytes","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:41.568528Z","target":"hyper::proto::h1::io","line":261,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/io.rs"}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:41.56855Z","target":"hyper::proto::h1::role","line":74,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs"}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:41.568571Z","target":"hyper::proto::h1::role","line":908,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs","bytes":712}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(694)","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:41.56859Z","target":"hyper::proto::h1::role","line":917,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs"}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:41.568616Z","target":"hyper::proto::h1::role","line":74,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs"}
{"v":0,"name":"sugar","msg":"parsed 11 headers","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:41.568634Z","target":"hyper::proto::h1::io","line":205,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/io.rs"}
{"v":0,"name":"sugar","msg":"incoming body is content-length (18 bytes)","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:41.568648Z","target":"hyper::proto::h1::conn","line":217,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"decode; state=Length(18)","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:41.568676Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/decode.rs"}
{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:41.568691Z","target":"hyper::proto::h1::conn","line":293,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:41.568711Z","target":"hyper::proto::h1::conn","line":467,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:41.568738Z","target":"hyper::proto::h1::conn","line":731,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:41.568754Z","target":"hyper::proto::h1::conn","line":731,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", devnet.bundlr.network)","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:41.568787Z","target":"hyper::client::pool","line":329,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/client/pool.rs"}
{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", devnet.bundlr.network)","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:41.568823Z","target":"hyper::client::pool","line":376,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/client/pool.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:41.568913Z","target":"hyper::proto::h1::conn","line":731,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"Getting balance for address: 5VCuBQA4KCpovL3h9RJqD9ufZXdoiEkFczTKCvewY1ZS","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:42.570358Z","target":"sugar_cli::upload::bundlr","line":166,"file":"src/upload/bundlr.rs"}
{"v":0,"name":"sugar","msg":"take? (\"https\", devnet.bundlr.network): expiration = Some(90s)","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:42.570443Z","target":"hyper::client::pool","line":610,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/client/pool.rs"}
{"v":0,"name":"sugar","msg":"reuse idle connection for (\"https\", devnet.bundlr.network)","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:42.570468Z","target":"hyper::client::pool","line":250,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/client/pool.rs"}
{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - START]","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:42.570532Z","target":"hyper::proto::h1::role","line":105,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs"}
{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - EVENT] Client::encode method=GET, body=None","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:42.570559Z","target":"hyper::proto::h1::role","line":1046,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs"}
{"v":0,"name":"sugar","msg":"[ENCODE_HEADERS - END]","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:42.570582Z","target":"hyper::proto::h1::role","line":105,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs"}
{"v":0,"name":"sugar","msg":"flushed 136 bytes","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:42.570711Z","target":"hyper::proto::h1::io","line":334,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/io.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: KeepAlive, keep_alive: Busy }","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:42.570746Z","target":"hyper::proto::h1::conn","line":731,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"Conn::read_head","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:42.698232Z","target":"hyper::proto::h1::conn","line":188,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"received 704 bytes","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:42.698293Z","target":"hyper::proto::h1::io","line":261,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/io.rs"}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - START]","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:42.698306Z","target":"hyper::proto::h1::role","line":74,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs"}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:42.698317Z","target":"hyper::proto::h1::role","line":908,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs","bytes":704}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - EVENT] Response.parse Complete(686)","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:42.698329Z","target":"hyper::proto::h1::role","line":917,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs"}
{"v":0,"name":"sugar","msg":"[PARSE_HEADERS - END]","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:42.698385Z","target":"hyper::proto::h1::role","line":74,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/role.rs"}
{"v":0,"name":"sugar","msg":"parsed 11 headers","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:42.698426Z","target":"hyper::proto::h1::io","line":205,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/io.rs"}
{"v":0,"name":"sugar","msg":"incoming body is content-length (18 bytes)","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:42.698457Z","target":"hyper::proto::h1::conn","line":217,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"decode; state=Length(18)","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:42.698473Z","target":"hyper::proto::h1::decode","line":106,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/decode.rs"}
{"v":0,"name":"sugar","msg":"incoming body completed","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:42.698481Z","target":"hyper::proto::h1::conn","line":293,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"maybe_notify; read_from_io blocked","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:42.698531Z","target":"hyper::proto::h1::conn","line":467,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:42.698566Z","target":"hyper::proto::h1::conn","line":731,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"flushed({role=client}): State { reading: Init, writing: Init, keep_alive: Idle }","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:42.698577Z","target":"hyper::proto::h1::conn","line":731,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/proto/h1/conn.rs"}
{"v":0,"name":"sugar","msg":"put; add idle connection for (\"https\", devnet.bundlr.network)","level":10,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:42.698575Z","target":"hyper::client::pool","line":329,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/client/pool.rs"}
{"v":0,"name":"sugar","msg":"pooling idle connection for (\"https\", devnet.bundlr.network)","level":20,"hostname":"Tylers-MBP.attlocal.net","pid":68896,"time":"2022-05-13T15:59:42.698643Z","target":"hyper::client::pool","line":376,"file":"/Users/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.16/src/client/pool.rs"}