Lines Matching defs:all_log_macros
5 macro_rules! all_log_macros {
28 all_log_macros!("hello");
29 all_log_macros!("hello",);
31 all_log_macros!(target: "my_target", "hello");
32 all_log_macros!(target: "my_target", "hello",);
48 all_log_macros!("hello {}", "world");
49 all_log_macros!("hello {}", "world",);
51 all_log_macros!(target: "my_target", "hello {}", "world");
52 all_log_macros!(target: "my_target", "hello {}", "world",);
68 all_log_macros!("hello {world}", world = "world");
69 all_log_macros!("hello {world}", world = "world",);
71 all_log_macros!(target: "my_target", "hello {world}", world = "world");
72 all_log_macros!(target: "my_target", "hello {world}", world = "world",);
102 all_log_macros!(target: "my_target", cat_1 = "chashu", cat_2 = "nori", cat_count = 2; "hello");
103 all_log_macros!(target = "my_target", cat_1 = "chashu", cat_2 = "nori", cat_count = 2; "hello");
104 all_log_macros!(cat_1 = "chashu", cat_2 = "nori", cat_count = 2; "hello");
117 all_log_macros!(target: "my_target", cat_math = { let mut x = 0; x += 1; x + 1 }; "hello");
118 all_log_macros!(target = "my_target", cat_math = { let mut x = 0; x += 1; x + 1 }; "hello");
119 all_log_macros!(cat_math = { let mut x = 0; x += 1; x + 1 }; "hello");
132 all_log_macros!(target: "my_target", cat_1 = "chashu", cat_2 = "nori", cat_count = 2; "hello {}", "world");
133 all_log_macros!(target = "my_target", cat_1 = "chashu", cat_2 = "nori", cat_count = 2; "hello {}", "world");
134 all_log_macros!(cat_1 = "chashu", cat_2 = "nori", cat_count = 2; "hello {}", "world");
147 all_log_macros!(target: "my_target", cat_1 = "chashu", cat_2 = "nori", cat_count = 2; "hello {world}", world = "world");
148 all_log_macros!(target = "my_target", cat_1 = "chashu", cat_2 = "nori", cat_count = 2; "hello {world}", world = "world");
149 all_log_macros!(cat_1 = "chashu", cat_2 = "nori", cat_count = 2; "hello {world}", world = "world");
179 all_log_macros!("hello {world}");
180 all_log_macros!("hello {world}",);
182 all_log_macros!(target: "my_target", "hello {world}");
183 all_log_macros!(target: "my_target", "hello {world}",);
185 all_log_macros!(target = "my_target"; "hello {world}");
186 all_log_macros!(target = "my_target"; "hello {world}",);
203 all_log_macros!(target: "my_target", cat_1 = "chashu", cat_2 = "nori", cat_count = 2; "hello {world}");
204 all_log_macros!(target = "my_target", cat_1 = "chashu", cat_2 = "nori", cat_count = 2; "hello {world}");
205 all_log_macros!(cat_1 = "chashu", cat_2 = "nori", cat_count = 2; "hello {world}");
216 all_log_macros!(target: "my_target", "also dogs" = "FĂlos", "key/that-can't/be/an/ident" = "hi"; "hello {world}", world = "world");
222 all_log_macros!(
251 all_log_macros!("some message: {:?}, {:?}", None, Some);