File: debug_ntp.rs

package info (click to toggle)
rust-tracing 0.1.44-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 9,948 kB
  • sloc: sh: 14; makefile: 2
file content (1266 lines) | stat: -rw-r--r-- 236,613 bytes parent folder | download
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
//! DO NOT EDIT! This file is generated by `xtask`.
//! Contains tests for the `debug!` macro.
#![deny(warnings)]
#![no_implicit_prelude]

extern crate tracing;

// We call all macros in this module with `no_implicit_prelude` to ensure they do not depend on the standard prelude.
#[cfg(target_arch = "wasm32")]
extern crate wasm_bindgen_test;

struct Disp {
    val: u64,
}

impl ::std::fmt::Display for Disp {
    fn fmt(&self, f: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result {
        ::std::write!(f, "Disp.val={val}", val = self.val)
    }
}

struct Deb {
    val: u64,
}

/// Manual implementation because otherwise `val` is unused.
impl ::std::fmt::Debug for Deb {
    fn fmt(&self, f: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result {
        f.debug_struct("Deb").field("val", &self.val).finish()
    }
}

struct Sub {
    field: u64,
}
#[cfg_attr(target_arch = "wasm32", wasm_bindgen_test::wasm_bindgen_test)]
#[test]
fn debug() {
    const CONST_VAR: &str = "const-field";

    let var = true;
    let sub = Sub { field: 4, };
    let disp = Disp { val: 61, };
    let deb = Deb { val: 102, };

    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, ident = 3); // DEBUG:debug,ntp,-,-,-,"ident","3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, ident = 3); // DEBUG:debug,ntp,-,p,-,"ident","3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, ident = 3, qux = 3); // DEBUG:debug,ntp,-,f,-,"ident","3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, ident = 3, qux = 3); // DEBUG:debug,ntp,-,pf,-,"ident","3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, ident = 3, "msg without args"); // DEBUG:debug,ntp,-,-,m,"ident","3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, ident = 3, "msg without args"); // DEBUG:debug,ntp,-,p,m,"ident","3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, ident = 3, qux = 3, "msg without args"); // DEBUG:debug,ntp,-,f,m,"ident","3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, ident = 3, qux = 3, "msg without args"); // DEBUG:debug,ntp,-,pf,m,"ident","3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { ident = 3 }, "msg without args"); // DEBUG:debug,ntp,{},-,m,"ident","3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, ident = 3 }, "msg without args"); // DEBUG:debug,ntp,{},p,m,"ident","3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { ident = 3, qux = 3 }, "msg without args"); // DEBUG:debug,ntp,{},f,m,"ident","3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, ident = 3, qux = 3 }, "msg without args"); // DEBUG:debug,ntp,{},pf,m,"ident","3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, ident = 3, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,-,-,ma,"ident","3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, ident = 3, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,-,p,ma,"ident","3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, ident = 3, qux = 3, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,-,f,ma,"ident","3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, ident = 3, qux = 3, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,-,pf,ma,"ident","3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { ident = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,{},-,ma,"ident","3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, ident = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,{},p,ma,"ident","3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { ident = 3, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,{},f,ma,"ident","3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, ident = 3, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,{},pf,ma,"ident","3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, ident = false); // DEBUG:debug,ntp,-,-,-,"ident","false"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, ident = false); // DEBUG:debug,ntp,-,p,-,"ident","false"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, ident = false, qux = 3); // DEBUG:debug,ntp,-,f,-,"ident","false"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, ident = false, qux = 3); // DEBUG:debug,ntp,-,pf,-,"ident","false"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, ident = false, "msg without args"); // DEBUG:debug,ntp,-,-,m,"ident","false"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, ident = false, "msg without args"); // DEBUG:debug,ntp,-,p,m,"ident","false"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, ident = false, qux = 3, "msg without args"); // DEBUG:debug,ntp,-,f,m,"ident","false"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, ident = false, qux = 3, "msg without args"); // DEBUG:debug,ntp,-,pf,m,"ident","false"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { ident = false }, "msg without args"); // DEBUG:debug,ntp,{},-,m,"ident","false"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, ident = false }, "msg without args"); // DEBUG:debug,ntp,{},p,m,"ident","false"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { ident = false, qux = 3 }, "msg without args"); // DEBUG:debug,ntp,{},f,m,"ident","false"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, ident = false, qux = 3 }, "msg without args"); // DEBUG:debug,ntp,{},pf,m,"ident","false"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, ident = false, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,-,-,ma,"ident","false"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, ident = false, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,-,p,ma,"ident","false"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, ident = false, qux = 3, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,-,f,ma,"ident","false"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, ident = false, qux = 3, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,-,pf,ma,"ident","false"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { ident = false }, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,{},-,ma,"ident","false"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, ident = false }, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,{},p,ma,"ident","false"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { ident = false, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,{},f,ma,"ident","false"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, ident = false, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,{},pf,ma,"ident","false"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, ident = ?3); // DEBUG:debug,ntp,-,-,-,"ident","?3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, ident = ?3); // DEBUG:debug,ntp,-,p,-,"ident","?3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, ident = ?3, qux = 3); // DEBUG:debug,ntp,-,f,-,"ident","?3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, ident = ?3, qux = 3); // DEBUG:debug,ntp,-,pf,-,"ident","?3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, ident = ?3, "msg without args"); // DEBUG:debug,ntp,-,-,m,"ident","?3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, ident = ?3, "msg without args"); // DEBUG:debug,ntp,-,p,m,"ident","?3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, ident = ?3, qux = 3, "msg without args"); // DEBUG:debug,ntp,-,f,m,"ident","?3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, ident = ?3, qux = 3, "msg without args"); // DEBUG:debug,ntp,-,pf,m,"ident","?3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { ident = ?3 }, "msg without args"); // DEBUG:debug,ntp,{},-,m,"ident","?3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, ident = ?3 }, "msg without args"); // DEBUG:debug,ntp,{},p,m,"ident","?3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { ident = ?3, qux = 3 }, "msg without args"); // DEBUG:debug,ntp,{},f,m,"ident","?3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, ident = ?3, qux = 3 }, "msg without args"); // DEBUG:debug,ntp,{},pf,m,"ident","?3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, ident = ?3, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,-,-,ma,"ident","?3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, ident = ?3, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,-,p,ma,"ident","?3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, ident = ?3, qux = 3, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,-,f,ma,"ident","?3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, ident = ?3, qux = 3, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,-,pf,ma,"ident","?3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { ident = ?3 }, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,{},-,ma,"ident","?3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, ident = ?3 }, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,{},p,ma,"ident","?3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { ident = ?3, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,{},f,ma,"ident","?3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, ident = ?3, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,{},pf,ma,"ident","?3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, ident = %3); // DEBUG:debug,ntp,-,-,-,"ident","%3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, ident = %3); // DEBUG:debug,ntp,-,p,-,"ident","%3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, ident = %3, qux = 3); // DEBUG:debug,ntp,-,f,-,"ident","%3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, ident = %3, qux = 3); // DEBUG:debug,ntp,-,pf,-,"ident","%3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, ident = %3, "msg without args"); // DEBUG:debug,ntp,-,-,m,"ident","%3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, ident = %3, "msg without args"); // DEBUG:debug,ntp,-,p,m,"ident","%3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, ident = %3, qux = 3, "msg without args"); // DEBUG:debug,ntp,-,f,m,"ident","%3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, ident = %3, qux = 3, "msg without args"); // DEBUG:debug,ntp,-,pf,m,"ident","%3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { ident = %3 }, "msg without args"); // DEBUG:debug,ntp,{},-,m,"ident","%3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, ident = %3 }, "msg without args"); // DEBUG:debug,ntp,{},p,m,"ident","%3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { ident = %3, qux = 3 }, "msg without args"); // DEBUG:debug,ntp,{},f,m,"ident","%3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, ident = %3, qux = 3 }, "msg without args"); // DEBUG:debug,ntp,{},pf,m,"ident","%3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, ident = %3, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,-,-,ma,"ident","%3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, ident = %3, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,-,p,ma,"ident","%3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, ident = %3, qux = 3, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,-,f,ma,"ident","%3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, ident = %3, qux = 3, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,-,pf,ma,"ident","%3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { ident = %3 }, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,{},-,ma,"ident","%3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, ident = %3 }, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,{},p,ma,"ident","%3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { ident = %3, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,{},f,ma,"ident","%3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, ident = %3, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,{},pf,ma,"ident","%3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, ident = ?deb); // DEBUG:debug,ntp,-,-,-,"ident","?deb"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, ident = ?deb); // DEBUG:debug,ntp,-,p,-,"ident","?deb"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, ident = ?deb, qux = 3); // DEBUG:debug,ntp,-,f,-,"ident","?deb"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, ident = ?deb, qux = 3); // DEBUG:debug,ntp,-,pf,-,"ident","?deb"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, ident = ?deb, "msg without args"); // DEBUG:debug,ntp,-,-,m,"ident","?deb"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, ident = ?deb, "msg without args"); // DEBUG:debug,ntp,-,p,m,"ident","?deb"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, ident = ?deb, qux = 3, "msg without args"); // DEBUG:debug,ntp,-,f,m,"ident","?deb"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, ident = ?deb, qux = 3, "msg without args"); // DEBUG:debug,ntp,-,pf,m,"ident","?deb"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { ident = ?deb }, "msg without args"); // DEBUG:debug,ntp,{},-,m,"ident","?deb"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, ident = ?deb }, "msg without args"); // DEBUG:debug,ntp,{},p,m,"ident","?deb"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { ident = ?deb, qux = 3 }, "msg without args"); // DEBUG:debug,ntp,{},f,m,"ident","?deb"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, ident = ?deb, qux = 3 }, "msg without args"); // DEBUG:debug,ntp,{},pf,m,"ident","?deb"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, ident = ?deb, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,-,-,ma,"ident","?deb"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, ident = ?deb, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,-,p,ma,"ident","?deb"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, ident = ?deb, qux = 3, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,-,f,ma,"ident","?deb"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, ident = ?deb, qux = 3, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,-,pf,ma,"ident","?deb"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { ident = ?deb }, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,{},-,ma,"ident","?deb"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, ident = ?deb }, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,{},p,ma,"ident","?deb"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { ident = ?deb, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,{},f,ma,"ident","?deb"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, ident = ?deb, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,{},pf,ma,"ident","?deb"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, ident = %disp); // DEBUG:debug,ntp,-,-,-,"ident","%disp"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, ident = %disp); // DEBUG:debug,ntp,-,p,-,"ident","%disp"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, ident = %disp, qux = 3); // DEBUG:debug,ntp,-,f,-,"ident","%disp"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, ident = %disp, qux = 3); // DEBUG:debug,ntp,-,pf,-,"ident","%disp"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, ident = %disp, "msg without args"); // DEBUG:debug,ntp,-,-,m,"ident","%disp"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, ident = %disp, "msg without args"); // DEBUG:debug,ntp,-,p,m,"ident","%disp"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, ident = %disp, qux = 3, "msg without args"); // DEBUG:debug,ntp,-,f,m,"ident","%disp"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, ident = %disp, qux = 3, "msg without args"); // DEBUG:debug,ntp,-,pf,m,"ident","%disp"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { ident = %disp }, "msg without args"); // DEBUG:debug,ntp,{},-,m,"ident","%disp"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, ident = %disp }, "msg without args"); // DEBUG:debug,ntp,{},p,m,"ident","%disp"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { ident = %disp, qux = 3 }, "msg without args"); // DEBUG:debug,ntp,{},f,m,"ident","%disp"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, ident = %disp, qux = 3 }, "msg without args"); // DEBUG:debug,ntp,{},pf,m,"ident","%disp"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, ident = %disp, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,-,-,ma,"ident","%disp"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, ident = %disp, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,-,p,ma,"ident","%disp"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, ident = %disp, qux = 3, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,-,f,ma,"ident","%disp"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, ident = %disp, qux = 3, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,-,pf,ma,"ident","%disp"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { ident = %disp }, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,{},-,ma,"ident","%disp"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, ident = %disp }, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,{},p,ma,"ident","%disp"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { ident = %disp, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,{},f,ma,"ident","%disp"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, ident = %disp, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,{},pf,ma,"ident","%disp"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, ident = ?sub.field); // DEBUG:debug,ntp,-,-,-,"ident","?sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, ident = ?sub.field); // DEBUG:debug,ntp,-,p,-,"ident","?sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, ident = ?sub.field, qux = 3); // DEBUG:debug,ntp,-,f,-,"ident","?sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, ident = ?sub.field, qux = 3); // DEBUG:debug,ntp,-,pf,-,"ident","?sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, ident = ?sub.field, "msg without args"); // DEBUG:debug,ntp,-,-,m,"ident","?sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, ident = ?sub.field, "msg without args"); // DEBUG:debug,ntp,-,p,m,"ident","?sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, ident = ?sub.field, qux = 3, "msg without args"); // DEBUG:debug,ntp,-,f,m,"ident","?sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, ident = ?sub.field, qux = 3, "msg without args"); // DEBUG:debug,ntp,-,pf,m,"ident","?sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { ident = ?sub.field }, "msg without args"); // DEBUG:debug,ntp,{},-,m,"ident","?sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, ident = ?sub.field }, "msg without args"); // DEBUG:debug,ntp,{},p,m,"ident","?sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { ident = ?sub.field, qux = 3 }, "msg without args"); // DEBUG:debug,ntp,{},f,m,"ident","?sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, ident = ?sub.field, qux = 3 }, "msg without args"); // DEBUG:debug,ntp,{},pf,m,"ident","?sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, ident = ?sub.field, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,-,-,ma,"ident","?sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, ident = ?sub.field, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,-,p,ma,"ident","?sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, ident = ?sub.field, qux = 3, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,-,f,ma,"ident","?sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, ident = ?sub.field, qux = 3, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,-,pf,ma,"ident","?sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { ident = ?sub.field }, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,{},-,ma,"ident","?sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, ident = ?sub.field }, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,{},p,ma,"ident","?sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { ident = ?sub.field, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,{},f,ma,"ident","?sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, ident = ?sub.field, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,{},pf,ma,"ident","?sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, ident = %sub.field); // DEBUG:debug,ntp,-,-,-,"ident","%sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, ident = %sub.field); // DEBUG:debug,ntp,-,p,-,"ident","%sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, ident = %sub.field, qux = 3); // DEBUG:debug,ntp,-,f,-,"ident","%sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, ident = %sub.field, qux = 3); // DEBUG:debug,ntp,-,pf,-,"ident","%sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, ident = %sub.field, "msg without args"); // DEBUG:debug,ntp,-,-,m,"ident","%sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, ident = %sub.field, "msg without args"); // DEBUG:debug,ntp,-,p,m,"ident","%sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, ident = %sub.field, qux = 3, "msg without args"); // DEBUG:debug,ntp,-,f,m,"ident","%sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, ident = %sub.field, qux = 3, "msg without args"); // DEBUG:debug,ntp,-,pf,m,"ident","%sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { ident = %sub.field }, "msg without args"); // DEBUG:debug,ntp,{},-,m,"ident","%sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, ident = %sub.field }, "msg without args"); // DEBUG:debug,ntp,{},p,m,"ident","%sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { ident = %sub.field, qux = 3 }, "msg without args"); // DEBUG:debug,ntp,{},f,m,"ident","%sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, ident = %sub.field, qux = 3 }, "msg without args"); // DEBUG:debug,ntp,{},pf,m,"ident","%sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, ident = %sub.field, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,-,-,ma,"ident","%sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, ident = %sub.field, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,-,p,ma,"ident","%sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, ident = %sub.field, qux = 3, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,-,f,ma,"ident","%sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, ident = %sub.field, qux = 3, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,-,pf,ma,"ident","%sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { ident = %sub.field }, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,{},-,ma,"ident","%sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, ident = %sub.field }, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,{},p,ma,"ident","%sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { ident = %sub.field, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,{},f,ma,"ident","%sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, ident = %sub.field, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,{},pf,ma,"ident","%sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, ident = debug(&deb)); // DEBUG:debug,ntp,-,-,-,"ident","debug(&deb)"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, ident = debug(&deb)); // DEBUG:debug,ntp,-,p,-,"ident","debug(&deb)"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, ident = debug(&deb), qux = 3); // DEBUG:debug,ntp,-,f,-,"ident","debug(&deb)"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, ident = debug(&deb), qux = 3); // DEBUG:debug,ntp,-,pf,-,"ident","debug(&deb)"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, ident = debug(&deb), "msg without args"); // DEBUG:debug,ntp,-,-,m,"ident","debug(&deb)"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, ident = debug(&deb), "msg without args"); // DEBUG:debug,ntp,-,p,m,"ident","debug(&deb)"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, ident = debug(&deb), qux = 3, "msg without args"); // DEBUG:debug,ntp,-,f,m,"ident","debug(&deb)"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, ident = debug(&deb), qux = 3, "msg without args"); // DEBUG:debug,ntp,-,pf,m,"ident","debug(&deb)"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { ident = debug(&deb) }, "msg without args"); // DEBUG:debug,ntp,{},-,m,"ident","debug(&deb)"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, ident = debug(&deb) }, "msg without args"); // DEBUG:debug,ntp,{},p,m,"ident","debug(&deb)"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { ident = debug(&deb), qux = 3 }, "msg without args"); // DEBUG:debug,ntp,{},f,m,"ident","debug(&deb)"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, ident = debug(&deb), qux = 3 }, "msg without args"); // DEBUG:debug,ntp,{},pf,m,"ident","debug(&deb)"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, ident = debug(&deb), "msg with arg: {:?}", 56); // DEBUG:debug,ntp,-,-,ma,"ident","debug(&deb)"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, ident = debug(&deb), "msg with arg: {:?}", 56); // DEBUG:debug,ntp,-,p,ma,"ident","debug(&deb)"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, ident = debug(&deb), qux = 3, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,-,f,ma,"ident","debug(&deb)"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, ident = debug(&deb), qux = 3, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,-,pf,ma,"ident","debug(&deb)"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { ident = debug(&deb) }, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,{},-,ma,"ident","debug(&deb)"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, ident = debug(&deb) }, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,{},p,ma,"ident","debug(&deb)"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { ident = debug(&deb), qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,{},f,ma,"ident","debug(&deb)"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, ident = debug(&deb), qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,{},pf,ma,"ident","debug(&deb)"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, ident = display(&disp)); // DEBUG:debug,ntp,-,-,-,"ident","display(&disp)"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, ident = display(&disp)); // DEBUG:debug,ntp,-,p,-,"ident","display(&disp)"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, ident = display(&disp), qux = 3); // DEBUG:debug,ntp,-,f,-,"ident","display(&disp)"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, ident = display(&disp), qux = 3); // DEBUG:debug,ntp,-,pf,-,"ident","display(&disp)"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, ident = display(&disp), "msg without args"); // DEBUG:debug,ntp,-,-,m,"ident","display(&disp)"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, ident = display(&disp), "msg without args"); // DEBUG:debug,ntp,-,p,m,"ident","display(&disp)"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, ident = display(&disp), qux = 3, "msg without args"); // DEBUG:debug,ntp,-,f,m,"ident","display(&disp)"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, ident = display(&disp), qux = 3, "msg without args"); // DEBUG:debug,ntp,-,pf,m,"ident","display(&disp)"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { ident = display(&disp) }, "msg without args"); // DEBUG:debug,ntp,{},-,m,"ident","display(&disp)"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, ident = display(&disp) }, "msg without args"); // DEBUG:debug,ntp,{},p,m,"ident","display(&disp)"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { ident = display(&disp), qux = 3 }, "msg without args"); // DEBUG:debug,ntp,{},f,m,"ident","display(&disp)"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, ident = display(&disp), qux = 3 }, "msg without args"); // DEBUG:debug,ntp,{},pf,m,"ident","display(&disp)"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, ident = display(&disp), "msg with arg: {:?}", 56); // DEBUG:debug,ntp,-,-,ma,"ident","display(&disp)"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, ident = display(&disp), "msg with arg: {:?}", 56); // DEBUG:debug,ntp,-,p,ma,"ident","display(&disp)"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, ident = display(&disp), qux = 3, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,-,f,ma,"ident","display(&disp)"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, ident = display(&disp), qux = 3, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,-,pf,ma,"ident","display(&disp)"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { ident = display(&disp) }, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,{},-,ma,"ident","display(&disp)"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, ident = display(&disp) }, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,{},p,ma,"ident","display(&disp)"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { ident = display(&disp), qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,{},f,ma,"ident","display(&disp)"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, ident = display(&disp), qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,{},pf,ma,"ident","display(&disp)"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, ident = tracing::field::Empty); // DEBUG:debug,ntp,-,-,-,"ident","tracing::field::Empty"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, ident = tracing::field::Empty); // DEBUG:debug,ntp,-,p,-,"ident","tracing::field::Empty"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, ident = tracing::field::Empty, qux = 3); // DEBUG:debug,ntp,-,f,-,"ident","tracing::field::Empty"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, ident = tracing::field::Empty, qux = 3); // DEBUG:debug,ntp,-,pf,-,"ident","tracing::field::Empty"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, ident = tracing::field::Empty, "msg without args"); // DEBUG:debug,ntp,-,-,m,"ident","tracing::field::Empty"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, ident = tracing::field::Empty, "msg without args"); // DEBUG:debug,ntp,-,p,m,"ident","tracing::field::Empty"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, ident = tracing::field::Empty, qux = 3, "msg without args"); // DEBUG:debug,ntp,-,f,m,"ident","tracing::field::Empty"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, ident = tracing::field::Empty, qux = 3, "msg without args"); // DEBUG:debug,ntp,-,pf,m,"ident","tracing::field::Empty"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { ident = tracing::field::Empty }, "msg without args"); // DEBUG:debug,ntp,{},-,m,"ident","tracing::field::Empty"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, ident = tracing::field::Empty }, "msg without args"); // DEBUG:debug,ntp,{},p,m,"ident","tracing::field::Empty"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { ident = tracing::field::Empty, qux = 3 }, "msg without args"); // DEBUG:debug,ntp,{},f,m,"ident","tracing::field::Empty"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, ident = tracing::field::Empty, qux = 3 }, "msg without args"); // DEBUG:debug,ntp,{},pf,m,"ident","tracing::field::Empty"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, ident = tracing::field::Empty, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,-,-,ma,"ident","tracing::field::Empty"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, ident = tracing::field::Empty, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,-,p,ma,"ident","tracing::field::Empty"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, ident = tracing::field::Empty, qux = 3, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,-,f,ma,"ident","tracing::field::Empty"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, ident = tracing::field::Empty, qux = 3, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,-,pf,ma,"ident","tracing::field::Empty"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { ident = tracing::field::Empty }, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,{},-,ma,"ident","tracing::field::Empty"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, ident = tracing::field::Empty }, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,{},p,ma,"ident","tracing::field::Empty"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { ident = tracing::field::Empty, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,{},f,ma,"ident","tracing::field::Empty"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, ident = tracing::field::Empty, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,{},pf,ma,"ident","tracing::field::Empty"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, dotted.ident = 3); // DEBUG:debug,ntp,-,-,-,"dotted.ident","3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, dotted.ident = 3); // DEBUG:debug,ntp,-,p,-,"dotted.ident","3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, dotted.ident = 3, qux = 3); // DEBUG:debug,ntp,-,f,-,"dotted.ident","3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, dotted.ident = 3, qux = 3); // DEBUG:debug,ntp,-,pf,-,"dotted.ident","3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, dotted.ident = 3, "msg without args"); // DEBUG:debug,ntp,-,-,m,"dotted.ident","3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, dotted.ident = 3, "msg without args"); // DEBUG:debug,ntp,-,p,m,"dotted.ident","3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, dotted.ident = 3, qux = 3, "msg without args"); // DEBUG:debug,ntp,-,f,m,"dotted.ident","3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, dotted.ident = 3, qux = 3, "msg without args"); // DEBUG:debug,ntp,-,pf,m,"dotted.ident","3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { dotted.ident = 3 }, "msg without args"); // DEBUG:debug,ntp,{},-,m,"dotted.ident","3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, dotted.ident = 3 }, "msg without args"); // DEBUG:debug,ntp,{},p,m,"dotted.ident","3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { dotted.ident = 3, qux = 3 }, "msg without args"); // DEBUG:debug,ntp,{},f,m,"dotted.ident","3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, dotted.ident = 3, qux = 3 }, "msg without args"); // DEBUG:debug,ntp,{},pf,m,"dotted.ident","3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, dotted.ident = 3, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,-,-,ma,"dotted.ident","3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, dotted.ident = 3, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,-,p,ma,"dotted.ident","3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, dotted.ident = 3, qux = 3, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,-,f,ma,"dotted.ident","3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, dotted.ident = 3, qux = 3, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,-,pf,ma,"dotted.ident","3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { dotted.ident = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,{},-,ma,"dotted.ident","3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, dotted.ident = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,{},p,ma,"dotted.ident","3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { dotted.ident = 3, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,{},f,ma,"dotted.ident","3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, dotted.ident = 3, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,{},pf,ma,"dotted.ident","3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, dotted.ident = false); // DEBUG:debug,ntp,-,-,-,"dotted.ident","false"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, dotted.ident = false); // DEBUG:debug,ntp,-,p,-,"dotted.ident","false"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, dotted.ident = false, qux = 3); // DEBUG:debug,ntp,-,f,-,"dotted.ident","false"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, dotted.ident = false, qux = 3); // DEBUG:debug,ntp,-,pf,-,"dotted.ident","false"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, dotted.ident = false, "msg without args"); // DEBUG:debug,ntp,-,-,m,"dotted.ident","false"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, dotted.ident = false, "msg without args"); // DEBUG:debug,ntp,-,p,m,"dotted.ident","false"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, dotted.ident = false, qux = 3, "msg without args"); // DEBUG:debug,ntp,-,f,m,"dotted.ident","false"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, dotted.ident = false, qux = 3, "msg without args"); // DEBUG:debug,ntp,-,pf,m,"dotted.ident","false"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { dotted.ident = false }, "msg without args"); // DEBUG:debug,ntp,{},-,m,"dotted.ident","false"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, dotted.ident = false }, "msg without args"); // DEBUG:debug,ntp,{},p,m,"dotted.ident","false"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { dotted.ident = false, qux = 3 }, "msg without args"); // DEBUG:debug,ntp,{},f,m,"dotted.ident","false"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, dotted.ident = false, qux = 3 }, "msg without args"); // DEBUG:debug,ntp,{},pf,m,"dotted.ident","false"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, dotted.ident = false, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,-,-,ma,"dotted.ident","false"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, dotted.ident = false, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,-,p,ma,"dotted.ident","false"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, dotted.ident = false, qux = 3, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,-,f,ma,"dotted.ident","false"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, dotted.ident = false, qux = 3, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,-,pf,ma,"dotted.ident","false"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { dotted.ident = false }, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,{},-,ma,"dotted.ident","false"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, dotted.ident = false }, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,{},p,ma,"dotted.ident","false"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { dotted.ident = false, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,{},f,ma,"dotted.ident","false"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, dotted.ident = false, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,{},pf,ma,"dotted.ident","false"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, dotted.ident = ?3); // DEBUG:debug,ntp,-,-,-,"dotted.ident","?3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, dotted.ident = ?3); // DEBUG:debug,ntp,-,p,-,"dotted.ident","?3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, dotted.ident = ?3, qux = 3); // DEBUG:debug,ntp,-,f,-,"dotted.ident","?3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, dotted.ident = ?3, qux = 3); // DEBUG:debug,ntp,-,pf,-,"dotted.ident","?3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, dotted.ident = ?3, "msg without args"); // DEBUG:debug,ntp,-,-,m,"dotted.ident","?3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, dotted.ident = ?3, "msg without args"); // DEBUG:debug,ntp,-,p,m,"dotted.ident","?3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, dotted.ident = ?3, qux = 3, "msg without args"); // DEBUG:debug,ntp,-,f,m,"dotted.ident","?3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, dotted.ident = ?3, qux = 3, "msg without args"); // DEBUG:debug,ntp,-,pf,m,"dotted.ident","?3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { dotted.ident = ?3 }, "msg without args"); // DEBUG:debug,ntp,{},-,m,"dotted.ident","?3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, dotted.ident = ?3 }, "msg without args"); // DEBUG:debug,ntp,{},p,m,"dotted.ident","?3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { dotted.ident = ?3, qux = 3 }, "msg without args"); // DEBUG:debug,ntp,{},f,m,"dotted.ident","?3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, dotted.ident = ?3, qux = 3 }, "msg without args"); // DEBUG:debug,ntp,{},pf,m,"dotted.ident","?3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, dotted.ident = ?3, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,-,-,ma,"dotted.ident","?3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, dotted.ident = ?3, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,-,p,ma,"dotted.ident","?3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, dotted.ident = ?3, qux = 3, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,-,f,ma,"dotted.ident","?3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, dotted.ident = ?3, qux = 3, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,-,pf,ma,"dotted.ident","?3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { dotted.ident = ?3 }, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,{},-,ma,"dotted.ident","?3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, dotted.ident = ?3 }, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,{},p,ma,"dotted.ident","?3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { dotted.ident = ?3, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,{},f,ma,"dotted.ident","?3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, dotted.ident = ?3, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,{},pf,ma,"dotted.ident","?3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, dotted.ident = %3); // DEBUG:debug,ntp,-,-,-,"dotted.ident","%3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, dotted.ident = %3); // DEBUG:debug,ntp,-,p,-,"dotted.ident","%3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, dotted.ident = %3, qux = 3); // DEBUG:debug,ntp,-,f,-,"dotted.ident","%3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, dotted.ident = %3, qux = 3); // DEBUG:debug,ntp,-,pf,-,"dotted.ident","%3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, dotted.ident = %3, "msg without args"); // DEBUG:debug,ntp,-,-,m,"dotted.ident","%3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, dotted.ident = %3, "msg without args"); // DEBUG:debug,ntp,-,p,m,"dotted.ident","%3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, dotted.ident = %3, qux = 3, "msg without args"); // DEBUG:debug,ntp,-,f,m,"dotted.ident","%3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, dotted.ident = %3, qux = 3, "msg without args"); // DEBUG:debug,ntp,-,pf,m,"dotted.ident","%3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { dotted.ident = %3 }, "msg without args"); // DEBUG:debug,ntp,{},-,m,"dotted.ident","%3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, dotted.ident = %3 }, "msg without args"); // DEBUG:debug,ntp,{},p,m,"dotted.ident","%3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { dotted.ident = %3, qux = 3 }, "msg without args"); // DEBUG:debug,ntp,{},f,m,"dotted.ident","%3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, dotted.ident = %3, qux = 3 }, "msg without args"); // DEBUG:debug,ntp,{},pf,m,"dotted.ident","%3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, dotted.ident = %3, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,-,-,ma,"dotted.ident","%3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, dotted.ident = %3, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,-,p,ma,"dotted.ident","%3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, dotted.ident = %3, qux = 3, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,-,f,ma,"dotted.ident","%3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, dotted.ident = %3, qux = 3, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,-,pf,ma,"dotted.ident","%3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { dotted.ident = %3 }, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,{},-,ma,"dotted.ident","%3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, dotted.ident = %3 }, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,{},p,ma,"dotted.ident","%3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { dotted.ident = %3, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,{},f,ma,"dotted.ident","%3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, dotted.ident = %3, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,{},pf,ma,"dotted.ident","%3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, dotted.ident = ?deb); // DEBUG:debug,ntp,-,-,-,"dotted.ident","?deb"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, dotted.ident = ?deb); // DEBUG:debug,ntp,-,p,-,"dotted.ident","?deb"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, dotted.ident = ?deb, qux = 3); // DEBUG:debug,ntp,-,f,-,"dotted.ident","?deb"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, dotted.ident = ?deb, qux = 3); // DEBUG:debug,ntp,-,pf,-,"dotted.ident","?deb"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, dotted.ident = ?deb, "msg without args"); // DEBUG:debug,ntp,-,-,m,"dotted.ident","?deb"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, dotted.ident = ?deb, "msg without args"); // DEBUG:debug,ntp,-,p,m,"dotted.ident","?deb"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, dotted.ident = ?deb, qux = 3, "msg without args"); // DEBUG:debug,ntp,-,f,m,"dotted.ident","?deb"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, dotted.ident = ?deb, qux = 3, "msg without args"); // DEBUG:debug,ntp,-,pf,m,"dotted.ident","?deb"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { dotted.ident = ?deb }, "msg without args"); // DEBUG:debug,ntp,{},-,m,"dotted.ident","?deb"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, dotted.ident = ?deb }, "msg without args"); // DEBUG:debug,ntp,{},p,m,"dotted.ident","?deb"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { dotted.ident = ?deb, qux = 3 }, "msg without args"); // DEBUG:debug,ntp,{},f,m,"dotted.ident","?deb"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, dotted.ident = ?deb, qux = 3 }, "msg without args"); // DEBUG:debug,ntp,{},pf,m,"dotted.ident","?deb"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, dotted.ident = ?deb, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,-,-,ma,"dotted.ident","?deb"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, dotted.ident = ?deb, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,-,p,ma,"dotted.ident","?deb"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, dotted.ident = ?deb, qux = 3, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,-,f,ma,"dotted.ident","?deb"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, dotted.ident = ?deb, qux = 3, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,-,pf,ma,"dotted.ident","?deb"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { dotted.ident = ?deb }, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,{},-,ma,"dotted.ident","?deb"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, dotted.ident = ?deb }, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,{},p,ma,"dotted.ident","?deb"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { dotted.ident = ?deb, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,{},f,ma,"dotted.ident","?deb"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, dotted.ident = ?deb, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,{},pf,ma,"dotted.ident","?deb"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, dotted.ident = %disp); // DEBUG:debug,ntp,-,-,-,"dotted.ident","%disp"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, dotted.ident = %disp); // DEBUG:debug,ntp,-,p,-,"dotted.ident","%disp"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, dotted.ident = %disp, qux = 3); // DEBUG:debug,ntp,-,f,-,"dotted.ident","%disp"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, dotted.ident = %disp, qux = 3); // DEBUG:debug,ntp,-,pf,-,"dotted.ident","%disp"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, dotted.ident = %disp, "msg without args"); // DEBUG:debug,ntp,-,-,m,"dotted.ident","%disp"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, dotted.ident = %disp, "msg without args"); // DEBUG:debug,ntp,-,p,m,"dotted.ident","%disp"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, dotted.ident = %disp, qux = 3, "msg without args"); // DEBUG:debug,ntp,-,f,m,"dotted.ident","%disp"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, dotted.ident = %disp, qux = 3, "msg without args"); // DEBUG:debug,ntp,-,pf,m,"dotted.ident","%disp"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { dotted.ident = %disp }, "msg without args"); // DEBUG:debug,ntp,{},-,m,"dotted.ident","%disp"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, dotted.ident = %disp }, "msg without args"); // DEBUG:debug,ntp,{},p,m,"dotted.ident","%disp"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { dotted.ident = %disp, qux = 3 }, "msg without args"); // DEBUG:debug,ntp,{},f,m,"dotted.ident","%disp"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, dotted.ident = %disp, qux = 3 }, "msg without args"); // DEBUG:debug,ntp,{},pf,m,"dotted.ident","%disp"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, dotted.ident = %disp, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,-,-,ma,"dotted.ident","%disp"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, dotted.ident = %disp, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,-,p,ma,"dotted.ident","%disp"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, dotted.ident = %disp, qux = 3, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,-,f,ma,"dotted.ident","%disp"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, dotted.ident = %disp, qux = 3, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,-,pf,ma,"dotted.ident","%disp"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { dotted.ident = %disp }, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,{},-,ma,"dotted.ident","%disp"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, dotted.ident = %disp }, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,{},p,ma,"dotted.ident","%disp"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { dotted.ident = %disp, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,{},f,ma,"dotted.ident","%disp"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, dotted.ident = %disp, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,{},pf,ma,"dotted.ident","%disp"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, dotted.ident = ?sub.field); // DEBUG:debug,ntp,-,-,-,"dotted.ident","?sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, dotted.ident = ?sub.field); // DEBUG:debug,ntp,-,p,-,"dotted.ident","?sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, dotted.ident = ?sub.field, qux = 3); // DEBUG:debug,ntp,-,f,-,"dotted.ident","?sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, dotted.ident = ?sub.field, qux = 3); // DEBUG:debug,ntp,-,pf,-,"dotted.ident","?sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, dotted.ident = ?sub.field, "msg without args"); // DEBUG:debug,ntp,-,-,m,"dotted.ident","?sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, dotted.ident = ?sub.field, "msg without args"); // DEBUG:debug,ntp,-,p,m,"dotted.ident","?sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, dotted.ident = ?sub.field, qux = 3, "msg without args"); // DEBUG:debug,ntp,-,f,m,"dotted.ident","?sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, dotted.ident = ?sub.field, qux = 3, "msg without args"); // DEBUG:debug,ntp,-,pf,m,"dotted.ident","?sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { dotted.ident = ?sub.field }, "msg without args"); // DEBUG:debug,ntp,{},-,m,"dotted.ident","?sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, dotted.ident = ?sub.field }, "msg without args"); // DEBUG:debug,ntp,{},p,m,"dotted.ident","?sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { dotted.ident = ?sub.field, qux = 3 }, "msg without args"); // DEBUG:debug,ntp,{},f,m,"dotted.ident","?sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, dotted.ident = ?sub.field, qux = 3 }, "msg without args"); // DEBUG:debug,ntp,{},pf,m,"dotted.ident","?sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, dotted.ident = ?sub.field, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,-,-,ma,"dotted.ident","?sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, dotted.ident = ?sub.field, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,-,p,ma,"dotted.ident","?sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, dotted.ident = ?sub.field, qux = 3, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,-,f,ma,"dotted.ident","?sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, dotted.ident = ?sub.field, qux = 3, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,-,pf,ma,"dotted.ident","?sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { dotted.ident = ?sub.field }, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,{},-,ma,"dotted.ident","?sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, dotted.ident = ?sub.field }, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,{},p,ma,"dotted.ident","?sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { dotted.ident = ?sub.field, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,{},f,ma,"dotted.ident","?sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, dotted.ident = ?sub.field, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,{},pf,ma,"dotted.ident","?sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, dotted.ident = %sub.field); // DEBUG:debug,ntp,-,-,-,"dotted.ident","%sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, dotted.ident = %sub.field); // DEBUG:debug,ntp,-,p,-,"dotted.ident","%sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, dotted.ident = %sub.field, qux = 3); // DEBUG:debug,ntp,-,f,-,"dotted.ident","%sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, dotted.ident = %sub.field, qux = 3); // DEBUG:debug,ntp,-,pf,-,"dotted.ident","%sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, dotted.ident = %sub.field, "msg without args"); // DEBUG:debug,ntp,-,-,m,"dotted.ident","%sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, dotted.ident = %sub.field, "msg without args"); // DEBUG:debug,ntp,-,p,m,"dotted.ident","%sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, dotted.ident = %sub.field, qux = 3, "msg without args"); // DEBUG:debug,ntp,-,f,m,"dotted.ident","%sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, dotted.ident = %sub.field, qux = 3, "msg without args"); // DEBUG:debug,ntp,-,pf,m,"dotted.ident","%sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { dotted.ident = %sub.field }, "msg without args"); // DEBUG:debug,ntp,{},-,m,"dotted.ident","%sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, dotted.ident = %sub.field }, "msg without args"); // DEBUG:debug,ntp,{},p,m,"dotted.ident","%sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { dotted.ident = %sub.field, qux = 3 }, "msg without args"); // DEBUG:debug,ntp,{},f,m,"dotted.ident","%sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, dotted.ident = %sub.field, qux = 3 }, "msg without args"); // DEBUG:debug,ntp,{},pf,m,"dotted.ident","%sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, dotted.ident = %sub.field, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,-,-,ma,"dotted.ident","%sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, dotted.ident = %sub.field, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,-,p,ma,"dotted.ident","%sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, dotted.ident = %sub.field, qux = 3, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,-,f,ma,"dotted.ident","%sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, dotted.ident = %sub.field, qux = 3, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,-,pf,ma,"dotted.ident","%sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { dotted.ident = %sub.field }, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,{},-,ma,"dotted.ident","%sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, dotted.ident = %sub.field }, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,{},p,ma,"dotted.ident","%sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { dotted.ident = %sub.field, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,{},f,ma,"dotted.ident","%sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, dotted.ident = %sub.field, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,{},pf,ma,"dotted.ident","%sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, dotted.ident = debug(&deb)); // DEBUG:debug,ntp,-,-,-,"dotted.ident","debug(&deb)"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, dotted.ident = debug(&deb)); // DEBUG:debug,ntp,-,p,-,"dotted.ident","debug(&deb)"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, dotted.ident = debug(&deb), qux = 3); // DEBUG:debug,ntp,-,f,-,"dotted.ident","debug(&deb)"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, dotted.ident = debug(&deb), qux = 3); // DEBUG:debug,ntp,-,pf,-,"dotted.ident","debug(&deb)"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, dotted.ident = debug(&deb), "msg without args"); // DEBUG:debug,ntp,-,-,m,"dotted.ident","debug(&deb)"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, dotted.ident = debug(&deb), "msg without args"); // DEBUG:debug,ntp,-,p,m,"dotted.ident","debug(&deb)"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, dotted.ident = debug(&deb), qux = 3, "msg without args"); // DEBUG:debug,ntp,-,f,m,"dotted.ident","debug(&deb)"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, dotted.ident = debug(&deb), qux = 3, "msg without args"); // DEBUG:debug,ntp,-,pf,m,"dotted.ident","debug(&deb)"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { dotted.ident = debug(&deb) }, "msg without args"); // DEBUG:debug,ntp,{},-,m,"dotted.ident","debug(&deb)"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, dotted.ident = debug(&deb) }, "msg without args"); // DEBUG:debug,ntp,{},p,m,"dotted.ident","debug(&deb)"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { dotted.ident = debug(&deb), qux = 3 }, "msg without args"); // DEBUG:debug,ntp,{},f,m,"dotted.ident","debug(&deb)"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, dotted.ident = debug(&deb), qux = 3 }, "msg without args"); // DEBUG:debug,ntp,{},pf,m,"dotted.ident","debug(&deb)"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, dotted.ident = debug(&deb), "msg with arg: {:?}", 56); // DEBUG:debug,ntp,-,-,ma,"dotted.ident","debug(&deb)"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, dotted.ident = debug(&deb), "msg with arg: {:?}", 56); // DEBUG:debug,ntp,-,p,ma,"dotted.ident","debug(&deb)"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, dotted.ident = debug(&deb), qux = 3, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,-,f,ma,"dotted.ident","debug(&deb)"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, dotted.ident = debug(&deb), qux = 3, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,-,pf,ma,"dotted.ident","debug(&deb)"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { dotted.ident = debug(&deb) }, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,{},-,ma,"dotted.ident","debug(&deb)"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, dotted.ident = debug(&deb) }, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,{},p,ma,"dotted.ident","debug(&deb)"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { dotted.ident = debug(&deb), qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,{},f,ma,"dotted.ident","debug(&deb)"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, dotted.ident = debug(&deb), qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,{},pf,ma,"dotted.ident","debug(&deb)"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, dotted.ident = display(&disp)); // DEBUG:debug,ntp,-,-,-,"dotted.ident","display(&disp)"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, dotted.ident = display(&disp)); // DEBUG:debug,ntp,-,p,-,"dotted.ident","display(&disp)"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, dotted.ident = display(&disp), qux = 3); // DEBUG:debug,ntp,-,f,-,"dotted.ident","display(&disp)"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, dotted.ident = display(&disp), qux = 3); // DEBUG:debug,ntp,-,pf,-,"dotted.ident","display(&disp)"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, dotted.ident = display(&disp), "msg without args"); // DEBUG:debug,ntp,-,-,m,"dotted.ident","display(&disp)"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, dotted.ident = display(&disp), "msg without args"); // DEBUG:debug,ntp,-,p,m,"dotted.ident","display(&disp)"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, dotted.ident = display(&disp), qux = 3, "msg without args"); // DEBUG:debug,ntp,-,f,m,"dotted.ident","display(&disp)"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, dotted.ident = display(&disp), qux = 3, "msg without args"); // DEBUG:debug,ntp,-,pf,m,"dotted.ident","display(&disp)"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { dotted.ident = display(&disp) }, "msg without args"); // DEBUG:debug,ntp,{},-,m,"dotted.ident","display(&disp)"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, dotted.ident = display(&disp) }, "msg without args"); // DEBUG:debug,ntp,{},p,m,"dotted.ident","display(&disp)"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { dotted.ident = display(&disp), qux = 3 }, "msg without args"); // DEBUG:debug,ntp,{},f,m,"dotted.ident","display(&disp)"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, dotted.ident = display(&disp), qux = 3 }, "msg without args"); // DEBUG:debug,ntp,{},pf,m,"dotted.ident","display(&disp)"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, dotted.ident = display(&disp), "msg with arg: {:?}", 56); // DEBUG:debug,ntp,-,-,ma,"dotted.ident","display(&disp)"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, dotted.ident = display(&disp), "msg with arg: {:?}", 56); // DEBUG:debug,ntp,-,p,ma,"dotted.ident","display(&disp)"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, dotted.ident = display(&disp), qux = 3, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,-,f,ma,"dotted.ident","display(&disp)"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, dotted.ident = display(&disp), qux = 3, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,-,pf,ma,"dotted.ident","display(&disp)"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { dotted.ident = display(&disp) }, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,{},-,ma,"dotted.ident","display(&disp)"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, dotted.ident = display(&disp) }, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,{},p,ma,"dotted.ident","display(&disp)"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { dotted.ident = display(&disp), qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,{},f,ma,"dotted.ident","display(&disp)"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, dotted.ident = display(&disp), qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,{},pf,ma,"dotted.ident","display(&disp)"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, dotted.ident = tracing::field::Empty); // DEBUG:debug,ntp,-,-,-,"dotted.ident","tracing::field::Empty"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, dotted.ident = tracing::field::Empty); // DEBUG:debug,ntp,-,p,-,"dotted.ident","tracing::field::Empty"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, dotted.ident = tracing::field::Empty, qux = 3); // DEBUG:debug,ntp,-,f,-,"dotted.ident","tracing::field::Empty"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, dotted.ident = tracing::field::Empty, qux = 3); // DEBUG:debug,ntp,-,pf,-,"dotted.ident","tracing::field::Empty"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, dotted.ident = tracing::field::Empty, "msg without args"); // DEBUG:debug,ntp,-,-,m,"dotted.ident","tracing::field::Empty"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, dotted.ident = tracing::field::Empty, "msg without args"); // DEBUG:debug,ntp,-,p,m,"dotted.ident","tracing::field::Empty"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, dotted.ident = tracing::field::Empty, qux = 3, "msg without args"); // DEBUG:debug,ntp,-,f,m,"dotted.ident","tracing::field::Empty"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, dotted.ident = tracing::field::Empty, qux = 3, "msg without args"); // DEBUG:debug,ntp,-,pf,m,"dotted.ident","tracing::field::Empty"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { dotted.ident = tracing::field::Empty }, "msg without args"); // DEBUG:debug,ntp,{},-,m,"dotted.ident","tracing::field::Empty"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, dotted.ident = tracing::field::Empty }, "msg without args"); // DEBUG:debug,ntp,{},p,m,"dotted.ident","tracing::field::Empty"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { dotted.ident = tracing::field::Empty, qux = 3 }, "msg without args"); // DEBUG:debug,ntp,{},f,m,"dotted.ident","tracing::field::Empty"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, dotted.ident = tracing::field::Empty, qux = 3 }, "msg without args"); // DEBUG:debug,ntp,{},pf,m,"dotted.ident","tracing::field::Empty"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, dotted.ident = tracing::field::Empty, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,-,-,ma,"dotted.ident","tracing::field::Empty"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, dotted.ident = tracing::field::Empty, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,-,p,ma,"dotted.ident","tracing::field::Empty"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, dotted.ident = tracing::field::Empty, qux = 3, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,-,f,ma,"dotted.ident","tracing::field::Empty"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, dotted.ident = tracing::field::Empty, qux = 3, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,-,pf,ma,"dotted.ident","tracing::field::Empty"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { dotted.ident = tracing::field::Empty }, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,{},-,ma,"dotted.ident","tracing::field::Empty"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, dotted.ident = tracing::field::Empty }, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,{},p,ma,"dotted.ident","tracing::field::Empty"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { dotted.ident = tracing::field::Empty, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,{},f,ma,"dotted.ident","tracing::field::Empty"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, dotted.ident = tracing::field::Empty, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,{},pf,ma,"dotted.ident","tracing::field::Empty"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, "literal" = 3); // DEBUG:debug,ntp,-,-,-,"\"literal\"","3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, "literal" = 3); // DEBUG:debug,ntp,-,p,-,"\"literal\"","3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, "literal" = 3, qux = 3); // DEBUG:debug,ntp,-,f,-,"\"literal\"","3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, "literal" = 3, qux = 3); // DEBUG:debug,ntp,-,pf,-,"\"literal\"","3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, "literal" = 3, "msg without args"); // DEBUG:debug,ntp,-,-,m,"\"literal\"","3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, "literal" = 3, "msg without args"); // DEBUG:debug,ntp,-,p,m,"\"literal\"","3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, "literal" = 3, qux = 3, "msg without args"); // DEBUG:debug,ntp,-,f,m,"\"literal\"","3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, "literal" = 3, qux = 3, "msg without args"); // DEBUG:debug,ntp,-,pf,m,"\"literal\"","3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { "literal" = 3 }, "msg without args"); // DEBUG:debug,ntp,{},-,m,"\"literal\"","3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, "literal" = 3 }, "msg without args"); // DEBUG:debug,ntp,{},p,m,"\"literal\"","3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { "literal" = 3, qux = 3 }, "msg without args"); // DEBUG:debug,ntp,{},f,m,"\"literal\"","3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, "literal" = 3, qux = 3 }, "msg without args"); // DEBUG:debug,ntp,{},pf,m,"\"literal\"","3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, "literal" = 3, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,-,-,ma,"\"literal\"","3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, "literal" = 3, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,-,p,ma,"\"literal\"","3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, "literal" = 3, qux = 3, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,-,f,ma,"\"literal\"","3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, "literal" = 3, qux = 3, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,-,pf,ma,"\"literal\"","3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { "literal" = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,{},-,ma,"\"literal\"","3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, "literal" = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,{},p,ma,"\"literal\"","3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { "literal" = 3, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,{},f,ma,"\"literal\"","3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, "literal" = 3, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,{},pf,ma,"\"literal\"","3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, "literal" = false); // DEBUG:debug,ntp,-,-,-,"\"literal\"","false"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, "literal" = false); // DEBUG:debug,ntp,-,p,-,"\"literal\"","false"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, "literal" = false, qux = 3); // DEBUG:debug,ntp,-,f,-,"\"literal\"","false"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, "literal" = false, qux = 3); // DEBUG:debug,ntp,-,pf,-,"\"literal\"","false"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, "literal" = false, "msg without args"); // DEBUG:debug,ntp,-,-,m,"\"literal\"","false"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, "literal" = false, "msg without args"); // DEBUG:debug,ntp,-,p,m,"\"literal\"","false"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, "literal" = false, qux = 3, "msg without args"); // DEBUG:debug,ntp,-,f,m,"\"literal\"","false"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, "literal" = false, qux = 3, "msg without args"); // DEBUG:debug,ntp,-,pf,m,"\"literal\"","false"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { "literal" = false }, "msg without args"); // DEBUG:debug,ntp,{},-,m,"\"literal\"","false"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, "literal" = false }, "msg without args"); // DEBUG:debug,ntp,{},p,m,"\"literal\"","false"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { "literal" = false, qux = 3 }, "msg without args"); // DEBUG:debug,ntp,{},f,m,"\"literal\"","false"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, "literal" = false, qux = 3 }, "msg without args"); // DEBUG:debug,ntp,{},pf,m,"\"literal\"","false"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, "literal" = false, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,-,-,ma,"\"literal\"","false"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, "literal" = false, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,-,p,ma,"\"literal\"","false"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, "literal" = false, qux = 3, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,-,f,ma,"\"literal\"","false"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, "literal" = false, qux = 3, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,-,pf,ma,"\"literal\"","false"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { "literal" = false }, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,{},-,ma,"\"literal\"","false"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, "literal" = false }, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,{},p,ma,"\"literal\"","false"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { "literal" = false, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,{},f,ma,"\"literal\"","false"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, "literal" = false, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,{},pf,ma,"\"literal\"","false"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, "literal" = ?3); // DEBUG:debug,ntp,-,-,-,"\"literal\"","?3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, "literal" = ?3); // DEBUG:debug,ntp,-,p,-,"\"literal\"","?3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, "literal" = ?3, qux = 3); // DEBUG:debug,ntp,-,f,-,"\"literal\"","?3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, "literal" = ?3, qux = 3); // DEBUG:debug,ntp,-,pf,-,"\"literal\"","?3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, "literal" = ?3, "msg without args"); // DEBUG:debug,ntp,-,-,m,"\"literal\"","?3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, "literal" = ?3, "msg without args"); // DEBUG:debug,ntp,-,p,m,"\"literal\"","?3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, "literal" = ?3, qux = 3, "msg without args"); // DEBUG:debug,ntp,-,f,m,"\"literal\"","?3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, "literal" = ?3, qux = 3, "msg without args"); // DEBUG:debug,ntp,-,pf,m,"\"literal\"","?3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { "literal" = ?3 }, "msg without args"); // DEBUG:debug,ntp,{},-,m,"\"literal\"","?3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, "literal" = ?3 }, "msg without args"); // DEBUG:debug,ntp,{},p,m,"\"literal\"","?3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { "literal" = ?3, qux = 3 }, "msg without args"); // DEBUG:debug,ntp,{},f,m,"\"literal\"","?3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, "literal" = ?3, qux = 3 }, "msg without args"); // DEBUG:debug,ntp,{},pf,m,"\"literal\"","?3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, "literal" = ?3, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,-,-,ma,"\"literal\"","?3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, "literal" = ?3, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,-,p,ma,"\"literal\"","?3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, "literal" = ?3, qux = 3, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,-,f,ma,"\"literal\"","?3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, "literal" = ?3, qux = 3, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,-,pf,ma,"\"literal\"","?3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { "literal" = ?3 }, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,{},-,ma,"\"literal\"","?3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, "literal" = ?3 }, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,{},p,ma,"\"literal\"","?3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { "literal" = ?3, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,{},f,ma,"\"literal\"","?3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, "literal" = ?3, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,{},pf,ma,"\"literal\"","?3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, "literal" = %3); // DEBUG:debug,ntp,-,-,-,"\"literal\"","%3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, "literal" = %3); // DEBUG:debug,ntp,-,p,-,"\"literal\"","%3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, "literal" = %3, qux = 3); // DEBUG:debug,ntp,-,f,-,"\"literal\"","%3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, "literal" = %3, qux = 3); // DEBUG:debug,ntp,-,pf,-,"\"literal\"","%3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, "literal" = %3, "msg without args"); // DEBUG:debug,ntp,-,-,m,"\"literal\"","%3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, "literal" = %3, "msg without args"); // DEBUG:debug,ntp,-,p,m,"\"literal\"","%3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, "literal" = %3, qux = 3, "msg without args"); // DEBUG:debug,ntp,-,f,m,"\"literal\"","%3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, "literal" = %3, qux = 3, "msg without args"); // DEBUG:debug,ntp,-,pf,m,"\"literal\"","%3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { "literal" = %3 }, "msg without args"); // DEBUG:debug,ntp,{},-,m,"\"literal\"","%3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, "literal" = %3 }, "msg without args"); // DEBUG:debug,ntp,{},p,m,"\"literal\"","%3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { "literal" = %3, qux = 3 }, "msg without args"); // DEBUG:debug,ntp,{},f,m,"\"literal\"","%3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, "literal" = %3, qux = 3 }, "msg without args"); // DEBUG:debug,ntp,{},pf,m,"\"literal\"","%3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, "literal" = %3, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,-,-,ma,"\"literal\"","%3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, "literal" = %3, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,-,p,ma,"\"literal\"","%3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, "literal" = %3, qux = 3, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,-,f,ma,"\"literal\"","%3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, "literal" = %3, qux = 3, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,-,pf,ma,"\"literal\"","%3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { "literal" = %3 }, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,{},-,ma,"\"literal\"","%3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, "literal" = %3 }, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,{},p,ma,"\"literal\"","%3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { "literal" = %3, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,{},f,ma,"\"literal\"","%3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, "literal" = %3, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,{},pf,ma,"\"literal\"","%3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, "literal" = ?deb); // DEBUG:debug,ntp,-,-,-,"\"literal\"","?deb"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, "literal" = ?deb); // DEBUG:debug,ntp,-,p,-,"\"literal\"","?deb"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, "literal" = ?deb, qux = 3); // DEBUG:debug,ntp,-,f,-,"\"literal\"","?deb"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, "literal" = ?deb, qux = 3); // DEBUG:debug,ntp,-,pf,-,"\"literal\"","?deb"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, "literal" = ?deb, "msg without args"); // DEBUG:debug,ntp,-,-,m,"\"literal\"","?deb"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, "literal" = ?deb, "msg without args"); // DEBUG:debug,ntp,-,p,m,"\"literal\"","?deb"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, "literal" = ?deb, qux = 3, "msg without args"); // DEBUG:debug,ntp,-,f,m,"\"literal\"","?deb"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, "literal" = ?deb, qux = 3, "msg without args"); // DEBUG:debug,ntp,-,pf,m,"\"literal\"","?deb"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { "literal" = ?deb }, "msg without args"); // DEBUG:debug,ntp,{},-,m,"\"literal\"","?deb"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, "literal" = ?deb }, "msg without args"); // DEBUG:debug,ntp,{},p,m,"\"literal\"","?deb"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { "literal" = ?deb, qux = 3 }, "msg without args"); // DEBUG:debug,ntp,{},f,m,"\"literal\"","?deb"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, "literal" = ?deb, qux = 3 }, "msg without args"); // DEBUG:debug,ntp,{},pf,m,"\"literal\"","?deb"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, "literal" = ?deb, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,-,-,ma,"\"literal\"","?deb"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, "literal" = ?deb, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,-,p,ma,"\"literal\"","?deb"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, "literal" = ?deb, qux = 3, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,-,f,ma,"\"literal\"","?deb"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, "literal" = ?deb, qux = 3, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,-,pf,ma,"\"literal\"","?deb"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { "literal" = ?deb }, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,{},-,ma,"\"literal\"","?deb"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, "literal" = ?deb }, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,{},p,ma,"\"literal\"","?deb"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { "literal" = ?deb, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,{},f,ma,"\"literal\"","?deb"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, "literal" = ?deb, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,{},pf,ma,"\"literal\"","?deb"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, "literal" = %disp); // DEBUG:debug,ntp,-,-,-,"\"literal\"","%disp"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, "literal" = %disp); // DEBUG:debug,ntp,-,p,-,"\"literal\"","%disp"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, "literal" = %disp, qux = 3); // DEBUG:debug,ntp,-,f,-,"\"literal\"","%disp"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, "literal" = %disp, qux = 3); // DEBUG:debug,ntp,-,pf,-,"\"literal\"","%disp"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, "literal" = %disp, "msg without args"); // DEBUG:debug,ntp,-,-,m,"\"literal\"","%disp"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, "literal" = %disp, "msg without args"); // DEBUG:debug,ntp,-,p,m,"\"literal\"","%disp"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, "literal" = %disp, qux = 3, "msg without args"); // DEBUG:debug,ntp,-,f,m,"\"literal\"","%disp"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, "literal" = %disp, qux = 3, "msg without args"); // DEBUG:debug,ntp,-,pf,m,"\"literal\"","%disp"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { "literal" = %disp }, "msg without args"); // DEBUG:debug,ntp,{},-,m,"\"literal\"","%disp"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, "literal" = %disp }, "msg without args"); // DEBUG:debug,ntp,{},p,m,"\"literal\"","%disp"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { "literal" = %disp, qux = 3 }, "msg without args"); // DEBUG:debug,ntp,{},f,m,"\"literal\"","%disp"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, "literal" = %disp, qux = 3 }, "msg without args"); // DEBUG:debug,ntp,{},pf,m,"\"literal\"","%disp"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, "literal" = %disp, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,-,-,ma,"\"literal\"","%disp"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, "literal" = %disp, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,-,p,ma,"\"literal\"","%disp"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, "literal" = %disp, qux = 3, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,-,f,ma,"\"literal\"","%disp"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, "literal" = %disp, qux = 3, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,-,pf,ma,"\"literal\"","%disp"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { "literal" = %disp }, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,{},-,ma,"\"literal\"","%disp"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, "literal" = %disp }, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,{},p,ma,"\"literal\"","%disp"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { "literal" = %disp, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,{},f,ma,"\"literal\"","%disp"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, "literal" = %disp, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,{},pf,ma,"\"literal\"","%disp"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, "literal" = ?sub.field); // DEBUG:debug,ntp,-,-,-,"\"literal\"","?sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, "literal" = ?sub.field); // DEBUG:debug,ntp,-,p,-,"\"literal\"","?sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, "literal" = ?sub.field, qux = 3); // DEBUG:debug,ntp,-,f,-,"\"literal\"","?sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, "literal" = ?sub.field, qux = 3); // DEBUG:debug,ntp,-,pf,-,"\"literal\"","?sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, "literal" = ?sub.field, "msg without args"); // DEBUG:debug,ntp,-,-,m,"\"literal\"","?sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, "literal" = ?sub.field, "msg without args"); // DEBUG:debug,ntp,-,p,m,"\"literal\"","?sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, "literal" = ?sub.field, qux = 3, "msg without args"); // DEBUG:debug,ntp,-,f,m,"\"literal\"","?sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, "literal" = ?sub.field, qux = 3, "msg without args"); // DEBUG:debug,ntp,-,pf,m,"\"literal\"","?sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { "literal" = ?sub.field }, "msg without args"); // DEBUG:debug,ntp,{},-,m,"\"literal\"","?sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, "literal" = ?sub.field }, "msg without args"); // DEBUG:debug,ntp,{},p,m,"\"literal\"","?sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { "literal" = ?sub.field, qux = 3 }, "msg without args"); // DEBUG:debug,ntp,{},f,m,"\"literal\"","?sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, "literal" = ?sub.field, qux = 3 }, "msg without args"); // DEBUG:debug,ntp,{},pf,m,"\"literal\"","?sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, "literal" = ?sub.field, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,-,-,ma,"\"literal\"","?sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, "literal" = ?sub.field, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,-,p,ma,"\"literal\"","?sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, "literal" = ?sub.field, qux = 3, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,-,f,ma,"\"literal\"","?sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, "literal" = ?sub.field, qux = 3, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,-,pf,ma,"\"literal\"","?sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { "literal" = ?sub.field }, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,{},-,ma,"\"literal\"","?sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, "literal" = ?sub.field }, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,{},p,ma,"\"literal\"","?sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { "literal" = ?sub.field, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,{},f,ma,"\"literal\"","?sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, "literal" = ?sub.field, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,{},pf,ma,"\"literal\"","?sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, "literal" = %sub.field); // DEBUG:debug,ntp,-,-,-,"\"literal\"","%sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, "literal" = %sub.field); // DEBUG:debug,ntp,-,p,-,"\"literal\"","%sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, "literal" = %sub.field, qux = 3); // DEBUG:debug,ntp,-,f,-,"\"literal\"","%sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, "literal" = %sub.field, qux = 3); // DEBUG:debug,ntp,-,pf,-,"\"literal\"","%sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, "literal" = %sub.field, "msg without args"); // DEBUG:debug,ntp,-,-,m,"\"literal\"","%sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, "literal" = %sub.field, "msg without args"); // DEBUG:debug,ntp,-,p,m,"\"literal\"","%sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, "literal" = %sub.field, qux = 3, "msg without args"); // DEBUG:debug,ntp,-,f,m,"\"literal\"","%sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, "literal" = %sub.field, qux = 3, "msg without args"); // DEBUG:debug,ntp,-,pf,m,"\"literal\"","%sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { "literal" = %sub.field }, "msg without args"); // DEBUG:debug,ntp,{},-,m,"\"literal\"","%sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, "literal" = %sub.field }, "msg without args"); // DEBUG:debug,ntp,{},p,m,"\"literal\"","%sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { "literal" = %sub.field, qux = 3 }, "msg without args"); // DEBUG:debug,ntp,{},f,m,"\"literal\"","%sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, "literal" = %sub.field, qux = 3 }, "msg without args"); // DEBUG:debug,ntp,{},pf,m,"\"literal\"","%sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, "literal" = %sub.field, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,-,-,ma,"\"literal\"","%sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, "literal" = %sub.field, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,-,p,ma,"\"literal\"","%sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, "literal" = %sub.field, qux = 3, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,-,f,ma,"\"literal\"","%sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, "literal" = %sub.field, qux = 3, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,-,pf,ma,"\"literal\"","%sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { "literal" = %sub.field }, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,{},-,ma,"\"literal\"","%sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, "literal" = %sub.field }, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,{},p,ma,"\"literal\"","%sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { "literal" = %sub.field, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,{},f,ma,"\"literal\"","%sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, "literal" = %sub.field, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,{},pf,ma,"\"literal\"","%sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, "literal" = debug(&deb)); // DEBUG:debug,ntp,-,-,-,"\"literal\"","debug(&deb)"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, "literal" = debug(&deb)); // DEBUG:debug,ntp,-,p,-,"\"literal\"","debug(&deb)"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, "literal" = debug(&deb), qux = 3); // DEBUG:debug,ntp,-,f,-,"\"literal\"","debug(&deb)"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, "literal" = debug(&deb), qux = 3); // DEBUG:debug,ntp,-,pf,-,"\"literal\"","debug(&deb)"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, "literal" = debug(&deb), "msg without args"); // DEBUG:debug,ntp,-,-,m,"\"literal\"","debug(&deb)"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, "literal" = debug(&deb), "msg without args"); // DEBUG:debug,ntp,-,p,m,"\"literal\"","debug(&deb)"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, "literal" = debug(&deb), qux = 3, "msg without args"); // DEBUG:debug,ntp,-,f,m,"\"literal\"","debug(&deb)"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, "literal" = debug(&deb), qux = 3, "msg without args"); // DEBUG:debug,ntp,-,pf,m,"\"literal\"","debug(&deb)"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { "literal" = debug(&deb) }, "msg without args"); // DEBUG:debug,ntp,{},-,m,"\"literal\"","debug(&deb)"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, "literal" = debug(&deb) }, "msg without args"); // DEBUG:debug,ntp,{},p,m,"\"literal\"","debug(&deb)"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { "literal" = debug(&deb), qux = 3 }, "msg without args"); // DEBUG:debug,ntp,{},f,m,"\"literal\"","debug(&deb)"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, "literal" = debug(&deb), qux = 3 }, "msg without args"); // DEBUG:debug,ntp,{},pf,m,"\"literal\"","debug(&deb)"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, "literal" = debug(&deb), "msg with arg: {:?}", 56); // DEBUG:debug,ntp,-,-,ma,"\"literal\"","debug(&deb)"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, "literal" = debug(&deb), "msg with arg: {:?}", 56); // DEBUG:debug,ntp,-,p,ma,"\"literal\"","debug(&deb)"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, "literal" = debug(&deb), qux = 3, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,-,f,ma,"\"literal\"","debug(&deb)"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, "literal" = debug(&deb), qux = 3, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,-,pf,ma,"\"literal\"","debug(&deb)"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { "literal" = debug(&deb) }, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,{},-,ma,"\"literal\"","debug(&deb)"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, "literal" = debug(&deb) }, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,{},p,ma,"\"literal\"","debug(&deb)"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { "literal" = debug(&deb), qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,{},f,ma,"\"literal\"","debug(&deb)"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, "literal" = debug(&deb), qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,{},pf,ma,"\"literal\"","debug(&deb)"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, "literal" = display(&disp)); // DEBUG:debug,ntp,-,-,-,"\"literal\"","display(&disp)"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, "literal" = display(&disp)); // DEBUG:debug,ntp,-,p,-,"\"literal\"","display(&disp)"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, "literal" = display(&disp), qux = 3); // DEBUG:debug,ntp,-,f,-,"\"literal\"","display(&disp)"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, "literal" = display(&disp), qux = 3); // DEBUG:debug,ntp,-,pf,-,"\"literal\"","display(&disp)"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, "literal" = display(&disp), "msg without args"); // DEBUG:debug,ntp,-,-,m,"\"literal\"","display(&disp)"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, "literal" = display(&disp), "msg without args"); // DEBUG:debug,ntp,-,p,m,"\"literal\"","display(&disp)"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, "literal" = display(&disp), qux = 3, "msg without args"); // DEBUG:debug,ntp,-,f,m,"\"literal\"","display(&disp)"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, "literal" = display(&disp), qux = 3, "msg without args"); // DEBUG:debug,ntp,-,pf,m,"\"literal\"","display(&disp)"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { "literal" = display(&disp) }, "msg without args"); // DEBUG:debug,ntp,{},-,m,"\"literal\"","display(&disp)"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, "literal" = display(&disp) }, "msg without args"); // DEBUG:debug,ntp,{},p,m,"\"literal\"","display(&disp)"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { "literal" = display(&disp), qux = 3 }, "msg without args"); // DEBUG:debug,ntp,{},f,m,"\"literal\"","display(&disp)"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, "literal" = display(&disp), qux = 3 }, "msg without args"); // DEBUG:debug,ntp,{},pf,m,"\"literal\"","display(&disp)"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, "literal" = display(&disp), "msg with arg: {:?}", 56); // DEBUG:debug,ntp,-,-,ma,"\"literal\"","display(&disp)"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, "literal" = display(&disp), "msg with arg: {:?}", 56); // DEBUG:debug,ntp,-,p,ma,"\"literal\"","display(&disp)"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, "literal" = display(&disp), qux = 3, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,-,f,ma,"\"literal\"","display(&disp)"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, "literal" = display(&disp), qux = 3, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,-,pf,ma,"\"literal\"","display(&disp)"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { "literal" = display(&disp) }, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,{},-,ma,"\"literal\"","display(&disp)"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, "literal" = display(&disp) }, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,{},p,ma,"\"literal\"","display(&disp)"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { "literal" = display(&disp), qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,{},f,ma,"\"literal\"","display(&disp)"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, "literal" = display(&disp), qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,{},pf,ma,"\"literal\"","display(&disp)"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, "literal" = tracing::field::Empty); // DEBUG:debug,ntp,-,-,-,"\"literal\"","tracing::field::Empty"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, "literal" = tracing::field::Empty); // DEBUG:debug,ntp,-,p,-,"\"literal\"","tracing::field::Empty"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, "literal" = tracing::field::Empty, qux = 3); // DEBUG:debug,ntp,-,f,-,"\"literal\"","tracing::field::Empty"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, "literal" = tracing::field::Empty, qux = 3); // DEBUG:debug,ntp,-,pf,-,"\"literal\"","tracing::field::Empty"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, "literal" = tracing::field::Empty, "msg without args"); // DEBUG:debug,ntp,-,-,m,"\"literal\"","tracing::field::Empty"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, "literal" = tracing::field::Empty, "msg without args"); // DEBUG:debug,ntp,-,p,m,"\"literal\"","tracing::field::Empty"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, "literal" = tracing::field::Empty, qux = 3, "msg without args"); // DEBUG:debug,ntp,-,f,m,"\"literal\"","tracing::field::Empty"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, "literal" = tracing::field::Empty, qux = 3, "msg without args"); // DEBUG:debug,ntp,-,pf,m,"\"literal\"","tracing::field::Empty"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { "literal" = tracing::field::Empty }, "msg without args"); // DEBUG:debug,ntp,{},-,m,"\"literal\"","tracing::field::Empty"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, "literal" = tracing::field::Empty }, "msg without args"); // DEBUG:debug,ntp,{},p,m,"\"literal\"","tracing::field::Empty"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { "literal" = tracing::field::Empty, qux = 3 }, "msg without args"); // DEBUG:debug,ntp,{},f,m,"\"literal\"","tracing::field::Empty"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, "literal" = tracing::field::Empty, qux = 3 }, "msg without args"); // DEBUG:debug,ntp,{},pf,m,"\"literal\"","tracing::field::Empty"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, "literal" = tracing::field::Empty, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,-,-,ma,"\"literal\"","tracing::field::Empty"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, "literal" = tracing::field::Empty, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,-,p,ma,"\"literal\"","tracing::field::Empty"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, "literal" = tracing::field::Empty, qux = 3, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,-,f,ma,"\"literal\"","tracing::field::Empty"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, "literal" = tracing::field::Empty, qux = 3, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,-,pf,ma,"\"literal\"","tracing::field::Empty"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { "literal" = tracing::field::Empty }, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,{},-,ma,"\"literal\"","tracing::field::Empty"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, "literal" = tracing::field::Empty }, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,{},p,ma,"\"literal\"","tracing::field::Empty"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { "literal" = tracing::field::Empty, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,{},f,ma,"\"literal\"","tracing::field::Empty"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, "literal" = tracing::field::Empty, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,{},pf,ma,"\"literal\"","tracing::field::Empty"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { CONST_VAR } = 3); // DEBUG:debug,ntp,-,-,-,"{ CONST_VAR }","3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, { CONST_VAR } = 3); // DEBUG:debug,ntp,-,p,-,"{ CONST_VAR }","3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { CONST_VAR } = 3, qux = 3); // DEBUG:debug,ntp,-,f,-,"{ CONST_VAR }","3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, { CONST_VAR } = 3, qux = 3); // DEBUG:debug,ntp,-,pf,-,"{ CONST_VAR }","3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { CONST_VAR } = 3, "msg without args"); // DEBUG:debug,ntp,-,-,m,"{ CONST_VAR }","3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, { CONST_VAR } = 3, "msg without args"); // DEBUG:debug,ntp,-,p,m,"{ CONST_VAR }","3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { CONST_VAR } = 3, qux = 3, "msg without args"); // DEBUG:debug,ntp,-,f,m,"{ CONST_VAR }","3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, { CONST_VAR } = 3, qux = 3, "msg without args"); // DEBUG:debug,ntp,-,pf,m,"{ CONST_VAR }","3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { { CONST_VAR } = 3 }, "msg without args"); // DEBUG:debug,ntp,{},-,m,"{ CONST_VAR }","3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, { CONST_VAR } = 3 }, "msg without args"); // DEBUG:debug,ntp,{},p,m,"{ CONST_VAR }","3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { { CONST_VAR } = 3, qux = 3 }, "msg without args"); // DEBUG:debug,ntp,{},f,m,"{ CONST_VAR }","3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, { CONST_VAR } = 3, qux = 3 }, "msg without args"); // DEBUG:debug,ntp,{},pf,m,"{ CONST_VAR }","3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { CONST_VAR } = 3, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,-,-,ma,"{ CONST_VAR }","3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, { CONST_VAR } = 3, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,-,p,ma,"{ CONST_VAR }","3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { CONST_VAR } = 3, qux = 3, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,-,f,ma,"{ CONST_VAR }","3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, { CONST_VAR } = 3, qux = 3, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,-,pf,ma,"{ CONST_VAR }","3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { { CONST_VAR } = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,{},-,ma,"{ CONST_VAR }","3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, { CONST_VAR } = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,{},p,ma,"{ CONST_VAR }","3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { { CONST_VAR } = 3, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,{},f,ma,"{ CONST_VAR }","3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, { CONST_VAR } = 3, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,{},pf,ma,"{ CONST_VAR }","3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { CONST_VAR } = false); // DEBUG:debug,ntp,-,-,-,"{ CONST_VAR }","false"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, { CONST_VAR } = false); // DEBUG:debug,ntp,-,p,-,"{ CONST_VAR }","false"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { CONST_VAR } = false, qux = 3); // DEBUG:debug,ntp,-,f,-,"{ CONST_VAR }","false"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, { CONST_VAR } = false, qux = 3); // DEBUG:debug,ntp,-,pf,-,"{ CONST_VAR }","false"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { CONST_VAR } = false, "msg without args"); // DEBUG:debug,ntp,-,-,m,"{ CONST_VAR }","false"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, { CONST_VAR } = false, "msg without args"); // DEBUG:debug,ntp,-,p,m,"{ CONST_VAR }","false"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { CONST_VAR } = false, qux = 3, "msg without args"); // DEBUG:debug,ntp,-,f,m,"{ CONST_VAR }","false"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, { CONST_VAR } = false, qux = 3, "msg without args"); // DEBUG:debug,ntp,-,pf,m,"{ CONST_VAR }","false"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { { CONST_VAR } = false }, "msg without args"); // DEBUG:debug,ntp,{},-,m,"{ CONST_VAR }","false"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, { CONST_VAR } = false }, "msg without args"); // DEBUG:debug,ntp,{},p,m,"{ CONST_VAR }","false"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { { CONST_VAR } = false, qux = 3 }, "msg without args"); // DEBUG:debug,ntp,{},f,m,"{ CONST_VAR }","false"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, { CONST_VAR } = false, qux = 3 }, "msg without args"); // DEBUG:debug,ntp,{},pf,m,"{ CONST_VAR }","false"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { CONST_VAR } = false, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,-,-,ma,"{ CONST_VAR }","false"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, { CONST_VAR } = false, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,-,p,ma,"{ CONST_VAR }","false"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { CONST_VAR } = false, qux = 3, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,-,f,ma,"{ CONST_VAR }","false"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, { CONST_VAR } = false, qux = 3, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,-,pf,ma,"{ CONST_VAR }","false"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { { CONST_VAR } = false }, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,{},-,ma,"{ CONST_VAR }","false"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, { CONST_VAR } = false }, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,{},p,ma,"{ CONST_VAR }","false"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { { CONST_VAR } = false, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,{},f,ma,"{ CONST_VAR }","false"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, { CONST_VAR } = false, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,{},pf,ma,"{ CONST_VAR }","false"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { CONST_VAR } = ?3); // DEBUG:debug,ntp,-,-,-,"{ CONST_VAR }","?3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, { CONST_VAR } = ?3); // DEBUG:debug,ntp,-,p,-,"{ CONST_VAR }","?3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { CONST_VAR } = ?3, qux = 3); // DEBUG:debug,ntp,-,f,-,"{ CONST_VAR }","?3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, { CONST_VAR } = ?3, qux = 3); // DEBUG:debug,ntp,-,pf,-,"{ CONST_VAR }","?3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { CONST_VAR } = ?3, "msg without args"); // DEBUG:debug,ntp,-,-,m,"{ CONST_VAR }","?3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, { CONST_VAR } = ?3, "msg without args"); // DEBUG:debug,ntp,-,p,m,"{ CONST_VAR }","?3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { CONST_VAR } = ?3, qux = 3, "msg without args"); // DEBUG:debug,ntp,-,f,m,"{ CONST_VAR }","?3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, { CONST_VAR } = ?3, qux = 3, "msg without args"); // DEBUG:debug,ntp,-,pf,m,"{ CONST_VAR }","?3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { { CONST_VAR } = ?3 }, "msg without args"); // DEBUG:debug,ntp,{},-,m,"{ CONST_VAR }","?3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, { CONST_VAR } = ?3 }, "msg without args"); // DEBUG:debug,ntp,{},p,m,"{ CONST_VAR }","?3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { { CONST_VAR } = ?3, qux = 3 }, "msg without args"); // DEBUG:debug,ntp,{},f,m,"{ CONST_VAR }","?3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, { CONST_VAR } = ?3, qux = 3 }, "msg without args"); // DEBUG:debug,ntp,{},pf,m,"{ CONST_VAR }","?3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { CONST_VAR } = ?3, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,-,-,ma,"{ CONST_VAR }","?3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, { CONST_VAR } = ?3, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,-,p,ma,"{ CONST_VAR }","?3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { CONST_VAR } = ?3, qux = 3, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,-,f,ma,"{ CONST_VAR }","?3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, { CONST_VAR } = ?3, qux = 3, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,-,pf,ma,"{ CONST_VAR }","?3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { { CONST_VAR } = ?3 }, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,{},-,ma,"{ CONST_VAR }","?3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, { CONST_VAR } = ?3 }, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,{},p,ma,"{ CONST_VAR }","?3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { { CONST_VAR } = ?3, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,{},f,ma,"{ CONST_VAR }","?3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, { CONST_VAR } = ?3, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,{},pf,ma,"{ CONST_VAR }","?3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { CONST_VAR } = %3); // DEBUG:debug,ntp,-,-,-,"{ CONST_VAR }","%3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, { CONST_VAR } = %3); // DEBUG:debug,ntp,-,p,-,"{ CONST_VAR }","%3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { CONST_VAR } = %3, qux = 3); // DEBUG:debug,ntp,-,f,-,"{ CONST_VAR }","%3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, { CONST_VAR } = %3, qux = 3); // DEBUG:debug,ntp,-,pf,-,"{ CONST_VAR }","%3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { CONST_VAR } = %3, "msg without args"); // DEBUG:debug,ntp,-,-,m,"{ CONST_VAR }","%3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, { CONST_VAR } = %3, "msg without args"); // DEBUG:debug,ntp,-,p,m,"{ CONST_VAR }","%3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { CONST_VAR } = %3, qux = 3, "msg without args"); // DEBUG:debug,ntp,-,f,m,"{ CONST_VAR }","%3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, { CONST_VAR } = %3, qux = 3, "msg without args"); // DEBUG:debug,ntp,-,pf,m,"{ CONST_VAR }","%3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { { CONST_VAR } = %3 }, "msg without args"); // DEBUG:debug,ntp,{},-,m,"{ CONST_VAR }","%3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, { CONST_VAR } = %3 }, "msg without args"); // DEBUG:debug,ntp,{},p,m,"{ CONST_VAR }","%3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { { CONST_VAR } = %3, qux = 3 }, "msg without args"); // DEBUG:debug,ntp,{},f,m,"{ CONST_VAR }","%3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, { CONST_VAR } = %3, qux = 3 }, "msg without args"); // DEBUG:debug,ntp,{},pf,m,"{ CONST_VAR }","%3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { CONST_VAR } = %3, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,-,-,ma,"{ CONST_VAR }","%3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, { CONST_VAR } = %3, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,-,p,ma,"{ CONST_VAR }","%3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { CONST_VAR } = %3, qux = 3, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,-,f,ma,"{ CONST_VAR }","%3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, { CONST_VAR } = %3, qux = 3, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,-,pf,ma,"{ CONST_VAR }","%3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { { CONST_VAR } = %3 }, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,{},-,ma,"{ CONST_VAR }","%3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, { CONST_VAR } = %3 }, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,{},p,ma,"{ CONST_VAR }","%3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { { CONST_VAR } = %3, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,{},f,ma,"{ CONST_VAR }","%3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, { CONST_VAR } = %3, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,{},pf,ma,"{ CONST_VAR }","%3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { CONST_VAR } = ?deb); // DEBUG:debug,ntp,-,-,-,"{ CONST_VAR }","?deb"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, { CONST_VAR } = ?deb); // DEBUG:debug,ntp,-,p,-,"{ CONST_VAR }","?deb"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { CONST_VAR } = ?deb, qux = 3); // DEBUG:debug,ntp,-,f,-,"{ CONST_VAR }","?deb"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, { CONST_VAR } = ?deb, qux = 3); // DEBUG:debug,ntp,-,pf,-,"{ CONST_VAR }","?deb"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { CONST_VAR } = ?deb, "msg without args"); // DEBUG:debug,ntp,-,-,m,"{ CONST_VAR }","?deb"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, { CONST_VAR } = ?deb, "msg without args"); // DEBUG:debug,ntp,-,p,m,"{ CONST_VAR }","?deb"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { CONST_VAR } = ?deb, qux = 3, "msg without args"); // DEBUG:debug,ntp,-,f,m,"{ CONST_VAR }","?deb"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, { CONST_VAR } = ?deb, qux = 3, "msg without args"); // DEBUG:debug,ntp,-,pf,m,"{ CONST_VAR }","?deb"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { { CONST_VAR } = ?deb }, "msg without args"); // DEBUG:debug,ntp,{},-,m,"{ CONST_VAR }","?deb"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, { CONST_VAR } = ?deb }, "msg without args"); // DEBUG:debug,ntp,{},p,m,"{ CONST_VAR }","?deb"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { { CONST_VAR } = ?deb, qux = 3 }, "msg without args"); // DEBUG:debug,ntp,{},f,m,"{ CONST_VAR }","?deb"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, { CONST_VAR } = ?deb, qux = 3 }, "msg without args"); // DEBUG:debug,ntp,{},pf,m,"{ CONST_VAR }","?deb"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { CONST_VAR } = ?deb, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,-,-,ma,"{ CONST_VAR }","?deb"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, { CONST_VAR } = ?deb, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,-,p,ma,"{ CONST_VAR }","?deb"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { CONST_VAR } = ?deb, qux = 3, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,-,f,ma,"{ CONST_VAR }","?deb"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, { CONST_VAR } = ?deb, qux = 3, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,-,pf,ma,"{ CONST_VAR }","?deb"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { { CONST_VAR } = ?deb }, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,{},-,ma,"{ CONST_VAR }","?deb"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, { CONST_VAR } = ?deb }, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,{},p,ma,"{ CONST_VAR }","?deb"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { { CONST_VAR } = ?deb, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,{},f,ma,"{ CONST_VAR }","?deb"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, { CONST_VAR } = ?deb, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,{},pf,ma,"{ CONST_VAR }","?deb"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { CONST_VAR } = %disp); // DEBUG:debug,ntp,-,-,-,"{ CONST_VAR }","%disp"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, { CONST_VAR } = %disp); // DEBUG:debug,ntp,-,p,-,"{ CONST_VAR }","%disp"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { CONST_VAR } = %disp, qux = 3); // DEBUG:debug,ntp,-,f,-,"{ CONST_VAR }","%disp"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, { CONST_VAR } = %disp, qux = 3); // DEBUG:debug,ntp,-,pf,-,"{ CONST_VAR }","%disp"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { CONST_VAR } = %disp, "msg without args"); // DEBUG:debug,ntp,-,-,m,"{ CONST_VAR }","%disp"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, { CONST_VAR } = %disp, "msg without args"); // DEBUG:debug,ntp,-,p,m,"{ CONST_VAR }","%disp"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { CONST_VAR } = %disp, qux = 3, "msg without args"); // DEBUG:debug,ntp,-,f,m,"{ CONST_VAR }","%disp"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, { CONST_VAR } = %disp, qux = 3, "msg without args"); // DEBUG:debug,ntp,-,pf,m,"{ CONST_VAR }","%disp"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { { CONST_VAR } = %disp }, "msg without args"); // DEBUG:debug,ntp,{},-,m,"{ CONST_VAR }","%disp"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, { CONST_VAR } = %disp }, "msg without args"); // DEBUG:debug,ntp,{},p,m,"{ CONST_VAR }","%disp"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { { CONST_VAR } = %disp, qux = 3 }, "msg without args"); // DEBUG:debug,ntp,{},f,m,"{ CONST_VAR }","%disp"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, { CONST_VAR } = %disp, qux = 3 }, "msg without args"); // DEBUG:debug,ntp,{},pf,m,"{ CONST_VAR }","%disp"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { CONST_VAR } = %disp, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,-,-,ma,"{ CONST_VAR }","%disp"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, { CONST_VAR } = %disp, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,-,p,ma,"{ CONST_VAR }","%disp"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { CONST_VAR } = %disp, qux = 3, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,-,f,ma,"{ CONST_VAR }","%disp"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, { CONST_VAR } = %disp, qux = 3, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,-,pf,ma,"{ CONST_VAR }","%disp"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { { CONST_VAR } = %disp }, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,{},-,ma,"{ CONST_VAR }","%disp"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, { CONST_VAR } = %disp }, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,{},p,ma,"{ CONST_VAR }","%disp"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { { CONST_VAR } = %disp, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,{},f,ma,"{ CONST_VAR }","%disp"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, { CONST_VAR } = %disp, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,{},pf,ma,"{ CONST_VAR }","%disp"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { CONST_VAR } = ?sub.field); // DEBUG:debug,ntp,-,-,-,"{ CONST_VAR }","?sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, { CONST_VAR } = ?sub.field); // DEBUG:debug,ntp,-,p,-,"{ CONST_VAR }","?sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { CONST_VAR } = ?sub.field, qux = 3); // DEBUG:debug,ntp,-,f,-,"{ CONST_VAR }","?sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, { CONST_VAR } = ?sub.field, qux = 3); // DEBUG:debug,ntp,-,pf,-,"{ CONST_VAR }","?sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { CONST_VAR } = ?sub.field, "msg without args"); // DEBUG:debug,ntp,-,-,m,"{ CONST_VAR }","?sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, { CONST_VAR } = ?sub.field, "msg without args"); // DEBUG:debug,ntp,-,p,m,"{ CONST_VAR }","?sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { CONST_VAR } = ?sub.field, qux = 3, "msg without args"); // DEBUG:debug,ntp,-,f,m,"{ CONST_VAR }","?sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, { CONST_VAR } = ?sub.field, qux = 3, "msg without args"); // DEBUG:debug,ntp,-,pf,m,"{ CONST_VAR }","?sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { { CONST_VAR } = ?sub.field }, "msg without args"); // DEBUG:debug,ntp,{},-,m,"{ CONST_VAR }","?sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, { CONST_VAR } = ?sub.field }, "msg without args"); // DEBUG:debug,ntp,{},p,m,"{ CONST_VAR }","?sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { { CONST_VAR } = ?sub.field, qux = 3 }, "msg without args"); // DEBUG:debug,ntp,{},f,m,"{ CONST_VAR }","?sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, { CONST_VAR } = ?sub.field, qux = 3 }, "msg without args"); // DEBUG:debug,ntp,{},pf,m,"{ CONST_VAR }","?sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { CONST_VAR } = ?sub.field, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,-,-,ma,"{ CONST_VAR }","?sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, { CONST_VAR } = ?sub.field, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,-,p,ma,"{ CONST_VAR }","?sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { CONST_VAR } = ?sub.field, qux = 3, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,-,f,ma,"{ CONST_VAR }","?sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, { CONST_VAR } = ?sub.field, qux = 3, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,-,pf,ma,"{ CONST_VAR }","?sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { { CONST_VAR } = ?sub.field }, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,{},-,ma,"{ CONST_VAR }","?sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, { CONST_VAR } = ?sub.field }, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,{},p,ma,"{ CONST_VAR }","?sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { { CONST_VAR } = ?sub.field, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,{},f,ma,"{ CONST_VAR }","?sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, { CONST_VAR } = ?sub.field, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,{},pf,ma,"{ CONST_VAR }","?sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { CONST_VAR } = %sub.field); // DEBUG:debug,ntp,-,-,-,"{ CONST_VAR }","%sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, { CONST_VAR } = %sub.field); // DEBUG:debug,ntp,-,p,-,"{ CONST_VAR }","%sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { CONST_VAR } = %sub.field, qux = 3); // DEBUG:debug,ntp,-,f,-,"{ CONST_VAR }","%sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, { CONST_VAR } = %sub.field, qux = 3); // DEBUG:debug,ntp,-,pf,-,"{ CONST_VAR }","%sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { CONST_VAR } = %sub.field, "msg without args"); // DEBUG:debug,ntp,-,-,m,"{ CONST_VAR }","%sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, { CONST_VAR } = %sub.field, "msg without args"); // DEBUG:debug,ntp,-,p,m,"{ CONST_VAR }","%sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { CONST_VAR } = %sub.field, qux = 3, "msg without args"); // DEBUG:debug,ntp,-,f,m,"{ CONST_VAR }","%sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, { CONST_VAR } = %sub.field, qux = 3, "msg without args"); // DEBUG:debug,ntp,-,pf,m,"{ CONST_VAR }","%sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { { CONST_VAR } = %sub.field }, "msg without args"); // DEBUG:debug,ntp,{},-,m,"{ CONST_VAR }","%sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, { CONST_VAR } = %sub.field }, "msg without args"); // DEBUG:debug,ntp,{},p,m,"{ CONST_VAR }","%sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { { CONST_VAR } = %sub.field, qux = 3 }, "msg without args"); // DEBUG:debug,ntp,{},f,m,"{ CONST_VAR }","%sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, { CONST_VAR } = %sub.field, qux = 3 }, "msg without args"); // DEBUG:debug,ntp,{},pf,m,"{ CONST_VAR }","%sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { CONST_VAR } = %sub.field, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,-,-,ma,"{ CONST_VAR }","%sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, { CONST_VAR } = %sub.field, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,-,p,ma,"{ CONST_VAR }","%sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { CONST_VAR } = %sub.field, qux = 3, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,-,f,ma,"{ CONST_VAR }","%sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, { CONST_VAR } = %sub.field, qux = 3, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,-,pf,ma,"{ CONST_VAR }","%sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { { CONST_VAR } = %sub.field }, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,{},-,ma,"{ CONST_VAR }","%sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, { CONST_VAR } = %sub.field }, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,{},p,ma,"{ CONST_VAR }","%sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { { CONST_VAR } = %sub.field, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,{},f,ma,"{ CONST_VAR }","%sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, { CONST_VAR } = %sub.field, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,{},pf,ma,"{ CONST_VAR }","%sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { CONST_VAR } = debug(&deb)); // DEBUG:debug,ntp,-,-,-,"{ CONST_VAR }","debug(&deb)"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, { CONST_VAR } = debug(&deb)); // DEBUG:debug,ntp,-,p,-,"{ CONST_VAR }","debug(&deb)"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { CONST_VAR } = debug(&deb), qux = 3); // DEBUG:debug,ntp,-,f,-,"{ CONST_VAR }","debug(&deb)"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, { CONST_VAR } = debug(&deb), qux = 3); // DEBUG:debug,ntp,-,pf,-,"{ CONST_VAR }","debug(&deb)"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { CONST_VAR } = debug(&deb), "msg without args"); // DEBUG:debug,ntp,-,-,m,"{ CONST_VAR }","debug(&deb)"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, { CONST_VAR } = debug(&deb), "msg without args"); // DEBUG:debug,ntp,-,p,m,"{ CONST_VAR }","debug(&deb)"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { CONST_VAR } = debug(&deb), qux = 3, "msg without args"); // DEBUG:debug,ntp,-,f,m,"{ CONST_VAR }","debug(&deb)"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, { CONST_VAR } = debug(&deb), qux = 3, "msg without args"); // DEBUG:debug,ntp,-,pf,m,"{ CONST_VAR }","debug(&deb)"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { { CONST_VAR } = debug(&deb) }, "msg without args"); // DEBUG:debug,ntp,{},-,m,"{ CONST_VAR }","debug(&deb)"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, { CONST_VAR } = debug(&deb) }, "msg without args"); // DEBUG:debug,ntp,{},p,m,"{ CONST_VAR }","debug(&deb)"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { { CONST_VAR } = debug(&deb), qux = 3 }, "msg without args"); // DEBUG:debug,ntp,{},f,m,"{ CONST_VAR }","debug(&deb)"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, { CONST_VAR } = debug(&deb), qux = 3 }, "msg without args"); // DEBUG:debug,ntp,{},pf,m,"{ CONST_VAR }","debug(&deb)"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { CONST_VAR } = debug(&deb), "msg with arg: {:?}", 56); // DEBUG:debug,ntp,-,-,ma,"{ CONST_VAR }","debug(&deb)"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, { CONST_VAR } = debug(&deb), "msg with arg: {:?}", 56); // DEBUG:debug,ntp,-,p,ma,"{ CONST_VAR }","debug(&deb)"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { CONST_VAR } = debug(&deb), qux = 3, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,-,f,ma,"{ CONST_VAR }","debug(&deb)"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, { CONST_VAR } = debug(&deb), qux = 3, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,-,pf,ma,"{ CONST_VAR }","debug(&deb)"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { { CONST_VAR } = debug(&deb) }, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,{},-,ma,"{ CONST_VAR }","debug(&deb)"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, { CONST_VAR } = debug(&deb) }, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,{},p,ma,"{ CONST_VAR }","debug(&deb)"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { { CONST_VAR } = debug(&deb), qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,{},f,ma,"{ CONST_VAR }","debug(&deb)"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, { CONST_VAR } = debug(&deb), qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,{},pf,ma,"{ CONST_VAR }","debug(&deb)"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { CONST_VAR } = display(&disp)); // DEBUG:debug,ntp,-,-,-,"{ CONST_VAR }","display(&disp)"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, { CONST_VAR } = display(&disp)); // DEBUG:debug,ntp,-,p,-,"{ CONST_VAR }","display(&disp)"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { CONST_VAR } = display(&disp), qux = 3); // DEBUG:debug,ntp,-,f,-,"{ CONST_VAR }","display(&disp)"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, { CONST_VAR } = display(&disp), qux = 3); // DEBUG:debug,ntp,-,pf,-,"{ CONST_VAR }","display(&disp)"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { CONST_VAR } = display(&disp), "msg without args"); // DEBUG:debug,ntp,-,-,m,"{ CONST_VAR }","display(&disp)"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, { CONST_VAR } = display(&disp), "msg without args"); // DEBUG:debug,ntp,-,p,m,"{ CONST_VAR }","display(&disp)"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { CONST_VAR } = display(&disp), qux = 3, "msg without args"); // DEBUG:debug,ntp,-,f,m,"{ CONST_VAR }","display(&disp)"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, { CONST_VAR } = display(&disp), qux = 3, "msg without args"); // DEBUG:debug,ntp,-,pf,m,"{ CONST_VAR }","display(&disp)"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { { CONST_VAR } = display(&disp) }, "msg without args"); // DEBUG:debug,ntp,{},-,m,"{ CONST_VAR }","display(&disp)"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, { CONST_VAR } = display(&disp) }, "msg without args"); // DEBUG:debug,ntp,{},p,m,"{ CONST_VAR }","display(&disp)"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { { CONST_VAR } = display(&disp), qux = 3 }, "msg without args"); // DEBUG:debug,ntp,{},f,m,"{ CONST_VAR }","display(&disp)"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, { CONST_VAR } = display(&disp), qux = 3 }, "msg without args"); // DEBUG:debug,ntp,{},pf,m,"{ CONST_VAR }","display(&disp)"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { CONST_VAR } = display(&disp), "msg with arg: {:?}", 56); // DEBUG:debug,ntp,-,-,ma,"{ CONST_VAR }","display(&disp)"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, { CONST_VAR } = display(&disp), "msg with arg: {:?}", 56); // DEBUG:debug,ntp,-,p,ma,"{ CONST_VAR }","display(&disp)"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { CONST_VAR } = display(&disp), qux = 3, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,-,f,ma,"{ CONST_VAR }","display(&disp)"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, { CONST_VAR } = display(&disp), qux = 3, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,-,pf,ma,"{ CONST_VAR }","display(&disp)"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { { CONST_VAR } = display(&disp) }, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,{},-,ma,"{ CONST_VAR }","display(&disp)"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, { CONST_VAR } = display(&disp) }, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,{},p,ma,"{ CONST_VAR }","display(&disp)"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { { CONST_VAR } = display(&disp), qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,{},f,ma,"{ CONST_VAR }","display(&disp)"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, { CONST_VAR } = display(&disp), qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,{},pf,ma,"{ CONST_VAR }","display(&disp)"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { CONST_VAR } = tracing::field::Empty); // DEBUG:debug,ntp,-,-,-,"{ CONST_VAR }","tracing::field::Empty"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, { CONST_VAR } = tracing::field::Empty); // DEBUG:debug,ntp,-,p,-,"{ CONST_VAR }","tracing::field::Empty"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { CONST_VAR } = tracing::field::Empty, qux = 3); // DEBUG:debug,ntp,-,f,-,"{ CONST_VAR }","tracing::field::Empty"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, { CONST_VAR } = tracing::field::Empty, qux = 3); // DEBUG:debug,ntp,-,pf,-,"{ CONST_VAR }","tracing::field::Empty"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { CONST_VAR } = tracing::field::Empty, "msg without args"); // DEBUG:debug,ntp,-,-,m,"{ CONST_VAR }","tracing::field::Empty"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, { CONST_VAR } = tracing::field::Empty, "msg without args"); // DEBUG:debug,ntp,-,p,m,"{ CONST_VAR }","tracing::field::Empty"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { CONST_VAR } = tracing::field::Empty, qux = 3, "msg without args"); // DEBUG:debug,ntp,-,f,m,"{ CONST_VAR }","tracing::field::Empty"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, { CONST_VAR } = tracing::field::Empty, qux = 3, "msg without args"); // DEBUG:debug,ntp,-,pf,m,"{ CONST_VAR }","tracing::field::Empty"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { { CONST_VAR } = tracing::field::Empty }, "msg without args"); // DEBUG:debug,ntp,{},-,m,"{ CONST_VAR }","tracing::field::Empty"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, { CONST_VAR } = tracing::field::Empty }, "msg without args"); // DEBUG:debug,ntp,{},p,m,"{ CONST_VAR }","tracing::field::Empty"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { { CONST_VAR } = tracing::field::Empty, qux = 3 }, "msg without args"); // DEBUG:debug,ntp,{},f,m,"{ CONST_VAR }","tracing::field::Empty"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, { CONST_VAR } = tracing::field::Empty, qux = 3 }, "msg without args"); // DEBUG:debug,ntp,{},pf,m,"{ CONST_VAR }","tracing::field::Empty"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { CONST_VAR } = tracing::field::Empty, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,-,-,ma,"{ CONST_VAR }","tracing::field::Empty"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, { CONST_VAR } = tracing::field::Empty, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,-,p,ma,"{ CONST_VAR }","tracing::field::Empty"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { CONST_VAR } = tracing::field::Empty, qux = 3, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,-,f,ma,"{ CONST_VAR }","tracing::field::Empty"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, { CONST_VAR } = tracing::field::Empty, qux = 3, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,-,pf,ma,"{ CONST_VAR }","tracing::field::Empty"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { { CONST_VAR } = tracing::field::Empty }, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,{},-,ma,"{ CONST_VAR }","tracing::field::Empty"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, { CONST_VAR } = tracing::field::Empty }, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,{},p,ma,"{ CONST_VAR }","tracing::field::Empty"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { { CONST_VAR } = tracing::field::Empty, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,{},f,ma,"{ CONST_VAR }","tracing::field::Empty"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, { CONST_VAR } = tracing::field::Empty, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,{},pf,ma,"{ CONST_VAR }","tracing::field::Empty"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, r#type = 3); // DEBUG:debug,ntp,-,-,-,"r#type","3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, r#type = 3); // DEBUG:debug,ntp,-,p,-,"r#type","3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, r#type = 3, qux = 3); // DEBUG:debug,ntp,-,f,-,"r#type","3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, r#type = 3, qux = 3); // DEBUG:debug,ntp,-,pf,-,"r#type","3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, r#type = 3, "msg without args"); // DEBUG:debug,ntp,-,-,m,"r#type","3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, r#type = 3, "msg without args"); // DEBUG:debug,ntp,-,p,m,"r#type","3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, r#type = 3, qux = 3, "msg without args"); // DEBUG:debug,ntp,-,f,m,"r#type","3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, r#type = 3, qux = 3, "msg without args"); // DEBUG:debug,ntp,-,pf,m,"r#type","3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { r#type = 3 }, "msg without args"); // DEBUG:debug,ntp,{},-,m,"r#type","3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, r#type = 3 }, "msg without args"); // DEBUG:debug,ntp,{},p,m,"r#type","3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { r#type = 3, qux = 3 }, "msg without args"); // DEBUG:debug,ntp,{},f,m,"r#type","3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, r#type = 3, qux = 3 }, "msg without args"); // DEBUG:debug,ntp,{},pf,m,"r#type","3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, r#type = 3, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,-,-,ma,"r#type","3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, r#type = 3, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,-,p,ma,"r#type","3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, r#type = 3, qux = 3, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,-,f,ma,"r#type","3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, r#type = 3, qux = 3, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,-,pf,ma,"r#type","3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { r#type = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,{},-,ma,"r#type","3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, r#type = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,{},p,ma,"r#type","3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { r#type = 3, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,{},f,ma,"r#type","3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, r#type = 3, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,{},pf,ma,"r#type","3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, r#type = false); // DEBUG:debug,ntp,-,-,-,"r#type","false"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, r#type = false); // DEBUG:debug,ntp,-,p,-,"r#type","false"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, r#type = false, qux = 3); // DEBUG:debug,ntp,-,f,-,"r#type","false"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, r#type = false, qux = 3); // DEBUG:debug,ntp,-,pf,-,"r#type","false"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, r#type = false, "msg without args"); // DEBUG:debug,ntp,-,-,m,"r#type","false"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, r#type = false, "msg without args"); // DEBUG:debug,ntp,-,p,m,"r#type","false"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, r#type = false, qux = 3, "msg without args"); // DEBUG:debug,ntp,-,f,m,"r#type","false"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, r#type = false, qux = 3, "msg without args"); // DEBUG:debug,ntp,-,pf,m,"r#type","false"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { r#type = false }, "msg without args"); // DEBUG:debug,ntp,{},-,m,"r#type","false"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, r#type = false }, "msg without args"); // DEBUG:debug,ntp,{},p,m,"r#type","false"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { r#type = false, qux = 3 }, "msg without args"); // DEBUG:debug,ntp,{},f,m,"r#type","false"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, r#type = false, qux = 3 }, "msg without args"); // DEBUG:debug,ntp,{},pf,m,"r#type","false"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, r#type = false, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,-,-,ma,"r#type","false"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, r#type = false, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,-,p,ma,"r#type","false"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, r#type = false, qux = 3, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,-,f,ma,"r#type","false"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, r#type = false, qux = 3, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,-,pf,ma,"r#type","false"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { r#type = false }, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,{},-,ma,"r#type","false"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, r#type = false }, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,{},p,ma,"r#type","false"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { r#type = false, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,{},f,ma,"r#type","false"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, r#type = false, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,{},pf,ma,"r#type","false"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, r#type = ?3); // DEBUG:debug,ntp,-,-,-,"r#type","?3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, r#type = ?3); // DEBUG:debug,ntp,-,p,-,"r#type","?3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, r#type = ?3, qux = 3); // DEBUG:debug,ntp,-,f,-,"r#type","?3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, r#type = ?3, qux = 3); // DEBUG:debug,ntp,-,pf,-,"r#type","?3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, r#type = ?3, "msg without args"); // DEBUG:debug,ntp,-,-,m,"r#type","?3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, r#type = ?3, "msg without args"); // DEBUG:debug,ntp,-,p,m,"r#type","?3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, r#type = ?3, qux = 3, "msg without args"); // DEBUG:debug,ntp,-,f,m,"r#type","?3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, r#type = ?3, qux = 3, "msg without args"); // DEBUG:debug,ntp,-,pf,m,"r#type","?3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { r#type = ?3 }, "msg without args"); // DEBUG:debug,ntp,{},-,m,"r#type","?3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, r#type = ?3 }, "msg without args"); // DEBUG:debug,ntp,{},p,m,"r#type","?3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { r#type = ?3, qux = 3 }, "msg without args"); // DEBUG:debug,ntp,{},f,m,"r#type","?3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, r#type = ?3, qux = 3 }, "msg without args"); // DEBUG:debug,ntp,{},pf,m,"r#type","?3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, r#type = ?3, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,-,-,ma,"r#type","?3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, r#type = ?3, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,-,p,ma,"r#type","?3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, r#type = ?3, qux = 3, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,-,f,ma,"r#type","?3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, r#type = ?3, qux = 3, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,-,pf,ma,"r#type","?3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { r#type = ?3 }, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,{},-,ma,"r#type","?3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, r#type = ?3 }, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,{},p,ma,"r#type","?3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { r#type = ?3, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,{},f,ma,"r#type","?3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, r#type = ?3, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,{},pf,ma,"r#type","?3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, r#type = %3); // DEBUG:debug,ntp,-,-,-,"r#type","%3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, r#type = %3); // DEBUG:debug,ntp,-,p,-,"r#type","%3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, r#type = %3, qux = 3); // DEBUG:debug,ntp,-,f,-,"r#type","%3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, r#type = %3, qux = 3); // DEBUG:debug,ntp,-,pf,-,"r#type","%3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, r#type = %3, "msg without args"); // DEBUG:debug,ntp,-,-,m,"r#type","%3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, r#type = %3, "msg without args"); // DEBUG:debug,ntp,-,p,m,"r#type","%3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, r#type = %3, qux = 3, "msg without args"); // DEBUG:debug,ntp,-,f,m,"r#type","%3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, r#type = %3, qux = 3, "msg without args"); // DEBUG:debug,ntp,-,pf,m,"r#type","%3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { r#type = %3 }, "msg without args"); // DEBUG:debug,ntp,{},-,m,"r#type","%3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, r#type = %3 }, "msg without args"); // DEBUG:debug,ntp,{},p,m,"r#type","%3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { r#type = %3, qux = 3 }, "msg without args"); // DEBUG:debug,ntp,{},f,m,"r#type","%3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, r#type = %3, qux = 3 }, "msg without args"); // DEBUG:debug,ntp,{},pf,m,"r#type","%3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, r#type = %3, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,-,-,ma,"r#type","%3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, r#type = %3, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,-,p,ma,"r#type","%3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, r#type = %3, qux = 3, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,-,f,ma,"r#type","%3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, r#type = %3, qux = 3, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,-,pf,ma,"r#type","%3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { r#type = %3 }, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,{},-,ma,"r#type","%3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, r#type = %3 }, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,{},p,ma,"r#type","%3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { r#type = %3, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,{},f,ma,"r#type","%3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, r#type = %3, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,{},pf,ma,"r#type","%3"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, r#type = ?deb); // DEBUG:debug,ntp,-,-,-,"r#type","?deb"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, r#type = ?deb); // DEBUG:debug,ntp,-,p,-,"r#type","?deb"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, r#type = ?deb, qux = 3); // DEBUG:debug,ntp,-,f,-,"r#type","?deb"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, r#type = ?deb, qux = 3); // DEBUG:debug,ntp,-,pf,-,"r#type","?deb"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, r#type = ?deb, "msg without args"); // DEBUG:debug,ntp,-,-,m,"r#type","?deb"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, r#type = ?deb, "msg without args"); // DEBUG:debug,ntp,-,p,m,"r#type","?deb"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, r#type = ?deb, qux = 3, "msg without args"); // DEBUG:debug,ntp,-,f,m,"r#type","?deb"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, r#type = ?deb, qux = 3, "msg without args"); // DEBUG:debug,ntp,-,pf,m,"r#type","?deb"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { r#type = ?deb }, "msg without args"); // DEBUG:debug,ntp,{},-,m,"r#type","?deb"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, r#type = ?deb }, "msg without args"); // DEBUG:debug,ntp,{},p,m,"r#type","?deb"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { r#type = ?deb, qux = 3 }, "msg without args"); // DEBUG:debug,ntp,{},f,m,"r#type","?deb"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, r#type = ?deb, qux = 3 }, "msg without args"); // DEBUG:debug,ntp,{},pf,m,"r#type","?deb"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, r#type = ?deb, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,-,-,ma,"r#type","?deb"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, r#type = ?deb, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,-,p,ma,"r#type","?deb"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, r#type = ?deb, qux = 3, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,-,f,ma,"r#type","?deb"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, r#type = ?deb, qux = 3, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,-,pf,ma,"r#type","?deb"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { r#type = ?deb }, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,{},-,ma,"r#type","?deb"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, r#type = ?deb }, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,{},p,ma,"r#type","?deb"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { r#type = ?deb, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,{},f,ma,"r#type","?deb"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, r#type = ?deb, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,{},pf,ma,"r#type","?deb"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, r#type = %disp); // DEBUG:debug,ntp,-,-,-,"r#type","%disp"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, r#type = %disp); // DEBUG:debug,ntp,-,p,-,"r#type","%disp"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, r#type = %disp, qux = 3); // DEBUG:debug,ntp,-,f,-,"r#type","%disp"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, r#type = %disp, qux = 3); // DEBUG:debug,ntp,-,pf,-,"r#type","%disp"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, r#type = %disp, "msg without args"); // DEBUG:debug,ntp,-,-,m,"r#type","%disp"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, r#type = %disp, "msg without args"); // DEBUG:debug,ntp,-,p,m,"r#type","%disp"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, r#type = %disp, qux = 3, "msg without args"); // DEBUG:debug,ntp,-,f,m,"r#type","%disp"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, r#type = %disp, qux = 3, "msg without args"); // DEBUG:debug,ntp,-,pf,m,"r#type","%disp"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { r#type = %disp }, "msg without args"); // DEBUG:debug,ntp,{},-,m,"r#type","%disp"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, r#type = %disp }, "msg without args"); // DEBUG:debug,ntp,{},p,m,"r#type","%disp"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { r#type = %disp, qux = 3 }, "msg without args"); // DEBUG:debug,ntp,{},f,m,"r#type","%disp"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, r#type = %disp, qux = 3 }, "msg without args"); // DEBUG:debug,ntp,{},pf,m,"r#type","%disp"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, r#type = %disp, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,-,-,ma,"r#type","%disp"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, r#type = %disp, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,-,p,ma,"r#type","%disp"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, r#type = %disp, qux = 3, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,-,f,ma,"r#type","%disp"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, r#type = %disp, qux = 3, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,-,pf,ma,"r#type","%disp"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { r#type = %disp }, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,{},-,ma,"r#type","%disp"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, r#type = %disp }, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,{},p,ma,"r#type","%disp"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { r#type = %disp, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,{},f,ma,"r#type","%disp"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, r#type = %disp, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,{},pf,ma,"r#type","%disp"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, r#type = ?sub.field); // DEBUG:debug,ntp,-,-,-,"r#type","?sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, r#type = ?sub.field); // DEBUG:debug,ntp,-,p,-,"r#type","?sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, r#type = ?sub.field, qux = 3); // DEBUG:debug,ntp,-,f,-,"r#type","?sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, r#type = ?sub.field, qux = 3); // DEBUG:debug,ntp,-,pf,-,"r#type","?sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, r#type = ?sub.field, "msg without args"); // DEBUG:debug,ntp,-,-,m,"r#type","?sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, r#type = ?sub.field, "msg without args"); // DEBUG:debug,ntp,-,p,m,"r#type","?sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, r#type = ?sub.field, qux = 3, "msg without args"); // DEBUG:debug,ntp,-,f,m,"r#type","?sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, r#type = ?sub.field, qux = 3, "msg without args"); // DEBUG:debug,ntp,-,pf,m,"r#type","?sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { r#type = ?sub.field }, "msg without args"); // DEBUG:debug,ntp,{},-,m,"r#type","?sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, r#type = ?sub.field }, "msg without args"); // DEBUG:debug,ntp,{},p,m,"r#type","?sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { r#type = ?sub.field, qux = 3 }, "msg without args"); // DEBUG:debug,ntp,{},f,m,"r#type","?sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, r#type = ?sub.field, qux = 3 }, "msg without args"); // DEBUG:debug,ntp,{},pf,m,"r#type","?sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, r#type = ?sub.field, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,-,-,ma,"r#type","?sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, r#type = ?sub.field, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,-,p,ma,"r#type","?sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, r#type = ?sub.field, qux = 3, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,-,f,ma,"r#type","?sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, r#type = ?sub.field, qux = 3, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,-,pf,ma,"r#type","?sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { r#type = ?sub.field }, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,{},-,ma,"r#type","?sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, r#type = ?sub.field }, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,{},p,ma,"r#type","?sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { r#type = ?sub.field, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,{},f,ma,"r#type","?sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, r#type = ?sub.field, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,{},pf,ma,"r#type","?sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, r#type = %sub.field); // DEBUG:debug,ntp,-,-,-,"r#type","%sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, r#type = %sub.field); // DEBUG:debug,ntp,-,p,-,"r#type","%sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, r#type = %sub.field, qux = 3); // DEBUG:debug,ntp,-,f,-,"r#type","%sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, r#type = %sub.field, qux = 3); // DEBUG:debug,ntp,-,pf,-,"r#type","%sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, r#type = %sub.field, "msg without args"); // DEBUG:debug,ntp,-,-,m,"r#type","%sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, r#type = %sub.field, "msg without args"); // DEBUG:debug,ntp,-,p,m,"r#type","%sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, r#type = %sub.field, qux = 3, "msg without args"); // DEBUG:debug,ntp,-,f,m,"r#type","%sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, r#type = %sub.field, qux = 3, "msg without args"); // DEBUG:debug,ntp,-,pf,m,"r#type","%sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { r#type = %sub.field }, "msg without args"); // DEBUG:debug,ntp,{},-,m,"r#type","%sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, r#type = %sub.field }, "msg without args"); // DEBUG:debug,ntp,{},p,m,"r#type","%sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { r#type = %sub.field, qux = 3 }, "msg without args"); // DEBUG:debug,ntp,{},f,m,"r#type","%sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, r#type = %sub.field, qux = 3 }, "msg without args"); // DEBUG:debug,ntp,{},pf,m,"r#type","%sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, r#type = %sub.field, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,-,-,ma,"r#type","%sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, r#type = %sub.field, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,-,p,ma,"r#type","%sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, r#type = %sub.field, qux = 3, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,-,f,ma,"r#type","%sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, r#type = %sub.field, qux = 3, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,-,pf,ma,"r#type","%sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { r#type = %sub.field }, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,{},-,ma,"r#type","%sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, r#type = %sub.field }, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,{},p,ma,"r#type","%sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { r#type = %sub.field, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,{},f,ma,"r#type","%sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, r#type = %sub.field, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,{},pf,ma,"r#type","%sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, r#type = debug(&deb)); // DEBUG:debug,ntp,-,-,-,"r#type","debug(&deb)"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, r#type = debug(&deb)); // DEBUG:debug,ntp,-,p,-,"r#type","debug(&deb)"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, r#type = debug(&deb), qux = 3); // DEBUG:debug,ntp,-,f,-,"r#type","debug(&deb)"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, r#type = debug(&deb), qux = 3); // DEBUG:debug,ntp,-,pf,-,"r#type","debug(&deb)"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, r#type = debug(&deb), "msg without args"); // DEBUG:debug,ntp,-,-,m,"r#type","debug(&deb)"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, r#type = debug(&deb), "msg without args"); // DEBUG:debug,ntp,-,p,m,"r#type","debug(&deb)"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, r#type = debug(&deb), qux = 3, "msg without args"); // DEBUG:debug,ntp,-,f,m,"r#type","debug(&deb)"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, r#type = debug(&deb), qux = 3, "msg without args"); // DEBUG:debug,ntp,-,pf,m,"r#type","debug(&deb)"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { r#type = debug(&deb) }, "msg without args"); // DEBUG:debug,ntp,{},-,m,"r#type","debug(&deb)"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, r#type = debug(&deb) }, "msg without args"); // DEBUG:debug,ntp,{},p,m,"r#type","debug(&deb)"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { r#type = debug(&deb), qux = 3 }, "msg without args"); // DEBUG:debug,ntp,{},f,m,"r#type","debug(&deb)"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, r#type = debug(&deb), qux = 3 }, "msg without args"); // DEBUG:debug,ntp,{},pf,m,"r#type","debug(&deb)"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, r#type = debug(&deb), "msg with arg: {:?}", 56); // DEBUG:debug,ntp,-,-,ma,"r#type","debug(&deb)"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, r#type = debug(&deb), "msg with arg: {:?}", 56); // DEBUG:debug,ntp,-,p,ma,"r#type","debug(&deb)"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, r#type = debug(&deb), qux = 3, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,-,f,ma,"r#type","debug(&deb)"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, r#type = debug(&deb), qux = 3, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,-,pf,ma,"r#type","debug(&deb)"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { r#type = debug(&deb) }, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,{},-,ma,"r#type","debug(&deb)"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, r#type = debug(&deb) }, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,{},p,ma,"r#type","debug(&deb)"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { r#type = debug(&deb), qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,{},f,ma,"r#type","debug(&deb)"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, r#type = debug(&deb), qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,{},pf,ma,"r#type","debug(&deb)"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, r#type = display(&disp)); // DEBUG:debug,ntp,-,-,-,"r#type","display(&disp)"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, r#type = display(&disp)); // DEBUG:debug,ntp,-,p,-,"r#type","display(&disp)"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, r#type = display(&disp), qux = 3); // DEBUG:debug,ntp,-,f,-,"r#type","display(&disp)"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, r#type = display(&disp), qux = 3); // DEBUG:debug,ntp,-,pf,-,"r#type","display(&disp)"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, r#type = display(&disp), "msg without args"); // DEBUG:debug,ntp,-,-,m,"r#type","display(&disp)"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, r#type = display(&disp), "msg without args"); // DEBUG:debug,ntp,-,p,m,"r#type","display(&disp)"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, r#type = display(&disp), qux = 3, "msg without args"); // DEBUG:debug,ntp,-,f,m,"r#type","display(&disp)"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, r#type = display(&disp), qux = 3, "msg without args"); // DEBUG:debug,ntp,-,pf,m,"r#type","display(&disp)"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { r#type = display(&disp) }, "msg without args"); // DEBUG:debug,ntp,{},-,m,"r#type","display(&disp)"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, r#type = display(&disp) }, "msg without args"); // DEBUG:debug,ntp,{},p,m,"r#type","display(&disp)"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { r#type = display(&disp), qux = 3 }, "msg without args"); // DEBUG:debug,ntp,{},f,m,"r#type","display(&disp)"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, r#type = display(&disp), qux = 3 }, "msg without args"); // DEBUG:debug,ntp,{},pf,m,"r#type","display(&disp)"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, r#type = display(&disp), "msg with arg: {:?}", 56); // DEBUG:debug,ntp,-,-,ma,"r#type","display(&disp)"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, r#type = display(&disp), "msg with arg: {:?}", 56); // DEBUG:debug,ntp,-,p,ma,"r#type","display(&disp)"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, r#type = display(&disp), qux = 3, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,-,f,ma,"r#type","display(&disp)"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, r#type = display(&disp), qux = 3, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,-,pf,ma,"r#type","display(&disp)"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { r#type = display(&disp) }, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,{},-,ma,"r#type","display(&disp)"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, r#type = display(&disp) }, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,{},p,ma,"r#type","display(&disp)"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { r#type = display(&disp), qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,{},f,ma,"r#type","display(&disp)"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, r#type = display(&disp), qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,{},pf,ma,"r#type","display(&disp)"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, r#type = tracing::field::Empty); // DEBUG:debug,ntp,-,-,-,"r#type","tracing::field::Empty"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, r#type = tracing::field::Empty); // DEBUG:debug,ntp,-,p,-,"r#type","tracing::field::Empty"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, r#type = tracing::field::Empty, qux = 3); // DEBUG:debug,ntp,-,f,-,"r#type","tracing::field::Empty"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, r#type = tracing::field::Empty, qux = 3); // DEBUG:debug,ntp,-,pf,-,"r#type","tracing::field::Empty"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, r#type = tracing::field::Empty, "msg without args"); // DEBUG:debug,ntp,-,-,m,"r#type","tracing::field::Empty"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, r#type = tracing::field::Empty, "msg without args"); // DEBUG:debug,ntp,-,p,m,"r#type","tracing::field::Empty"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, r#type = tracing::field::Empty, qux = 3, "msg without args"); // DEBUG:debug,ntp,-,f,m,"r#type","tracing::field::Empty"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, r#type = tracing::field::Empty, qux = 3, "msg without args"); // DEBUG:debug,ntp,-,pf,m,"r#type","tracing::field::Empty"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { r#type = tracing::field::Empty }, "msg without args"); // DEBUG:debug,ntp,{},-,m,"r#type","tracing::field::Empty"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, r#type = tracing::field::Empty }, "msg without args"); // DEBUG:debug,ntp,{},p,m,"r#type","tracing::field::Empty"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { r#type = tracing::field::Empty, qux = 3 }, "msg without args"); // DEBUG:debug,ntp,{},f,m,"r#type","tracing::field::Empty"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, r#type = tracing::field::Empty, qux = 3 }, "msg without args"); // DEBUG:debug,ntp,{},pf,m,"r#type","tracing::field::Empty"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, r#type = tracing::field::Empty, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,-,-,ma,"r#type","tracing::field::Empty"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, r#type = tracing::field::Empty, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,-,p,ma,"r#type","tracing::field::Empty"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, r#type = tracing::field::Empty, qux = 3, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,-,f,ma,"r#type","tracing::field::Empty"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, r#type = tracing::field::Empty, qux = 3, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,-,pf,ma,"r#type","tracing::field::Empty"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { r#type = tracing::field::Empty }, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,{},-,ma,"r#type","tracing::field::Empty"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, r#type = tracing::field::Empty }, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,{},p,ma,"r#type","tracing::field::Empty"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { r#type = tracing::field::Empty, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,{},f,ma,"r#type","tracing::field::Empty"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, r#type = tracing::field::Empty, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,{},pf,ma,"r#type","tracing::field::Empty"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, var); // DEBUG:debug,ntp,-,-,-,-,"var"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, var); // DEBUG:debug,ntp,-,p,-,-,"var"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, var, qux = 3); // DEBUG:debug,ntp,-,f,-,-,"var"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, var, qux = 3); // DEBUG:debug,ntp,-,pf,-,-,"var"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, var, "msg without args"); // DEBUG:debug,ntp,-,-,m,-,"var"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, var, "msg without args"); // DEBUG:debug,ntp,-,p,m,-,"var"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, var, qux = 3, "msg without args"); // DEBUG:debug,ntp,-,f,m,-,"var"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, var, qux = 3, "msg without args"); // DEBUG:debug,ntp,-,pf,m,-,"var"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { var }, "msg without args"); // DEBUG:debug,ntp,{},-,m,-,"var"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, var }, "msg without args"); // DEBUG:debug,ntp,{},p,m,-,"var"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { var, qux = 3 }, "msg without args"); // DEBUG:debug,ntp,{},f,m,-,"var"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, var, qux = 3 }, "msg without args"); // DEBUG:debug,ntp,{},pf,m,-,"var"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, var, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,-,-,ma,-,"var"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, var, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,-,p,ma,-,"var"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, var, qux = 3, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,-,f,ma,-,"var"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, var, qux = 3, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,-,pf,ma,-,"var"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { var }, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,{},-,ma,-,"var"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, var }, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,{},p,ma,-,"var"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { var, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,{},f,ma,-,"var"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, var, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,{},pf,ma,-,"var"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, sub.field); // DEBUG:debug,ntp,-,-,-,-,"sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, sub.field); // DEBUG:debug,ntp,-,p,-,-,"sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, sub.field, qux = 3); // DEBUG:debug,ntp,-,f,-,-,"sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, sub.field, qux = 3); // DEBUG:debug,ntp,-,pf,-,-,"sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, sub.field, "msg without args"); // DEBUG:debug,ntp,-,-,m,-,"sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, sub.field, "msg without args"); // DEBUG:debug,ntp,-,p,m,-,"sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, sub.field, qux = 3, "msg without args"); // DEBUG:debug,ntp,-,f,m,-,"sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, sub.field, qux = 3, "msg without args"); // DEBUG:debug,ntp,-,pf,m,-,"sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { sub.field }, "msg without args"); // DEBUG:debug,ntp,{},-,m,-,"sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, sub.field }, "msg without args"); // DEBUG:debug,ntp,{},p,m,-,"sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { sub.field, qux = 3 }, "msg without args"); // DEBUG:debug,ntp,{},f,m,-,"sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, sub.field, qux = 3 }, "msg without args"); // DEBUG:debug,ntp,{},pf,m,-,"sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, sub.field, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,-,-,ma,-,"sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, sub.field, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,-,p,ma,-,"sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, sub.field, qux = 3, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,-,f,ma,-,"sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, sub.field, qux = 3, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,-,pf,ma,-,"sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { sub.field }, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,{},-,ma,-,"sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, sub.field }, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,{},p,ma,-,"sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { sub.field, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,{},f,ma,-,"sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, sub.field, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,{},pf,ma,-,"sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, %disp); // DEBUG:debug,ntp,-,-,-,-,"%disp"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, %disp); // DEBUG:debug,ntp,-,p,-,-,"%disp"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, %disp, qux = 3); // DEBUG:debug,ntp,-,f,-,-,"%disp"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, %disp, qux = 3); // DEBUG:debug,ntp,-,pf,-,-,"%disp"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, %disp, "msg without args"); // DEBUG:debug,ntp,-,-,m,-,"%disp"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, %disp, "msg without args"); // DEBUG:debug,ntp,-,p,m,-,"%disp"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, %disp, qux = 3, "msg without args"); // DEBUG:debug,ntp,-,f,m,-,"%disp"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, %disp, qux = 3, "msg without args"); // DEBUG:debug,ntp,-,pf,m,-,"%disp"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { %disp }, "msg without args"); // DEBUG:debug,ntp,{},-,m,-,"%disp"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, %disp }, "msg without args"); // DEBUG:debug,ntp,{},p,m,-,"%disp"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { %disp, qux = 3 }, "msg without args"); // DEBUG:debug,ntp,{},f,m,-,"%disp"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, %disp, qux = 3 }, "msg without args"); // DEBUG:debug,ntp,{},pf,m,-,"%disp"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, %disp, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,-,-,ma,-,"%disp"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, %disp, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,-,p,ma,-,"%disp"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, %disp, qux = 3, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,-,f,ma,-,"%disp"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, %disp, qux = 3, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,-,pf,ma,-,"%disp"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { %disp }, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,{},-,ma,-,"%disp"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, %disp }, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,{},p,ma,-,"%disp"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { %disp, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,{},f,ma,-,"%disp"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, %disp, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,{},pf,ma,-,"%disp"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, ?deb); // DEBUG:debug,ntp,-,-,-,-,"?deb"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, ?deb); // DEBUG:debug,ntp,-,p,-,-,"?deb"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, ?deb, qux = 3); // DEBUG:debug,ntp,-,f,-,-,"?deb"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, ?deb, qux = 3); // DEBUG:debug,ntp,-,pf,-,-,"?deb"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, ?deb, "msg without args"); // DEBUG:debug,ntp,-,-,m,-,"?deb"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, ?deb, "msg without args"); // DEBUG:debug,ntp,-,p,m,-,"?deb"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, ?deb, qux = 3, "msg without args"); // DEBUG:debug,ntp,-,f,m,-,"?deb"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, ?deb, qux = 3, "msg without args"); // DEBUG:debug,ntp,-,pf,m,-,"?deb"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { ?deb }, "msg without args"); // DEBUG:debug,ntp,{},-,m,-,"?deb"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, ?deb }, "msg without args"); // DEBUG:debug,ntp,{},p,m,-,"?deb"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { ?deb, qux = 3 }, "msg without args"); // DEBUG:debug,ntp,{},f,m,-,"?deb"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, ?deb, qux = 3 }, "msg without args"); // DEBUG:debug,ntp,{},pf,m,-,"?deb"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, ?deb, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,-,-,ma,-,"?deb"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, ?deb, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,-,p,ma,-,"?deb"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, ?deb, qux = 3, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,-,f,ma,-,"?deb"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, ?deb, qux = 3, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,-,pf,ma,-,"?deb"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { ?deb }, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,{},-,ma,-,"?deb"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, ?deb }, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,{},p,ma,-,"?deb"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { ?deb, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,{},f,ma,-,"?deb"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, ?deb, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,{},pf,ma,-,"?deb"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, %sub.field); // DEBUG:debug,ntp,-,-,-,-,"%sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, %sub.field); // DEBUG:debug,ntp,-,p,-,-,"%sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, %sub.field, qux = 3); // DEBUG:debug,ntp,-,f,-,-,"%sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, %sub.field, qux = 3); // DEBUG:debug,ntp,-,pf,-,-,"%sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, %sub.field, "msg without args"); // DEBUG:debug,ntp,-,-,m,-,"%sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, %sub.field, "msg without args"); // DEBUG:debug,ntp,-,p,m,-,"%sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, %sub.field, qux = 3, "msg without args"); // DEBUG:debug,ntp,-,f,m,-,"%sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, %sub.field, qux = 3, "msg without args"); // DEBUG:debug,ntp,-,pf,m,-,"%sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { %sub.field }, "msg without args"); // DEBUG:debug,ntp,{},-,m,-,"%sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, %sub.field }, "msg without args"); // DEBUG:debug,ntp,{},p,m,-,"%sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { %sub.field, qux = 3 }, "msg without args"); // DEBUG:debug,ntp,{},f,m,-,"%sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, %sub.field, qux = 3 }, "msg without args"); // DEBUG:debug,ntp,{},pf,m,-,"%sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, %sub.field, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,-,-,ma,-,"%sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, %sub.field, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,-,p,ma,-,"%sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, %sub.field, qux = 3, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,-,f,ma,-,"%sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, %sub.field, qux = 3, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,-,pf,ma,-,"%sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { %sub.field }, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,{},-,ma,-,"%sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, %sub.field }, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,{},p,ma,-,"%sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { %sub.field, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,{},f,ma,-,"%sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, %sub.field, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,{},pf,ma,-,"%sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, ?sub.field); // DEBUG:debug,ntp,-,-,-,-,"?sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, ?sub.field); // DEBUG:debug,ntp,-,p,-,-,"?sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, ?sub.field, qux = 3); // DEBUG:debug,ntp,-,f,-,-,"?sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, ?sub.field, qux = 3); // DEBUG:debug,ntp,-,pf,-,-,"?sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, ?sub.field, "msg without args"); // DEBUG:debug,ntp,-,-,m,-,"?sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, ?sub.field, "msg without args"); // DEBUG:debug,ntp,-,p,m,-,"?sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, ?sub.field, qux = 3, "msg without args"); // DEBUG:debug,ntp,-,f,m,-,"?sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, ?sub.field, qux = 3, "msg without args"); // DEBUG:debug,ntp,-,pf,m,-,"?sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { ?sub.field }, "msg without args"); // DEBUG:debug,ntp,{},-,m,-,"?sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, ?sub.field }, "msg without args"); // DEBUG:debug,ntp,{},p,m,-,"?sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { ?sub.field, qux = 3 }, "msg without args"); // DEBUG:debug,ntp,{},f,m,-,"?sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, ?sub.field, qux = 3 }, "msg without args"); // DEBUG:debug,ntp,{},pf,m,-,"?sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, ?sub.field, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,-,-,ma,-,"?sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, ?sub.field, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,-,p,ma,-,"?sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, ?sub.field, qux = 3, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,-,f,ma,-,"?sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, foo = true, ?sub.field, qux = 3, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,-,pf,ma,-,"?sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { ?sub.field }, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,{},-,ma,-,"?sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, ?sub.field }, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,{},p,ma,-,"?sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { ?sub.field, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,{},f,ma,-,"?sub.field"
    tracing::debug!(name: "mog", target: "my::module", parent: ::core::option::Option::None, { foo = true, ?sub.field, qux = 3 }, "msg with arg: {:?}", 56); // DEBUG:debug,ntp,{},pf,ma,-,"?sub.field"
}