Lines Matching refs:world
38 log!(lvl, "hello {}", "world");
39 log!(lvl, "hello {}", "world",);
41 log!(target: "my_target", lvl, "hello {}", "world");
42 log!(target: "my_target", lvl, "hello {}", "world",);
44 log!(lvl, "hello {}", "world");
45 log!(lvl, "hello {}", "world",);
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",);
58 log!(lvl, "hello {world}", world = "world");
59 log!(lvl, "hello {world}", world = "world",);
61 log!(target: "my_target", lvl, "hello {world}", world = "world");
62 log!(target: "my_target", lvl, "hello {world}", world = "world",);
64 log!(lvl, "hello {world}", world = "world");
65 log!(lvl, "hello {world}", world = "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",);
126 log!(target: "my_target", lvl, cat_1 = "chashu", cat_2 = "nori", cat_count = 2; "hello {}", "world");
127 log!(lvl, target = "my_target", cat_1 = "chashu", cat_2 = "nori", cat_count = 2; "hello {}", "world");
129 log!(lvl, cat_1 = "chashu", cat_2 = "nori", cat_count = 2; "hello {}", "world");
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");
141 log!(target: "my_target", lvl, cat_1 = "chashu", cat_2 = "nori", cat_count = 2; "hello {world}", world = "world");
142 log!(lvl, target = "my_target", cat_1 = "chashu", cat_2 = "nori", cat_count = 2; "hello {world}", world = "world");
144 log!(lvl, cat_1 = "chashu", cat_2 = "nori", cat_count = 2; "hello {world}", world = "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");
166 let world = "world";
169 log!(lvl, "hello {world}");
170 log!(lvl, "hello {world}",);
172 log!(target: "my_target", lvl, "hello {world}");
173 log!(target: "my_target", lvl, "hello {world}",);
175 log!(lvl, "hello {world}");
176 log!(lvl, "hello {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}",);
195 let world = "world";
198 log!(target: "my_target", lvl, cat_1 = "chashu", cat_2 = "nori", cat_count = 2; "hello {world}");
200 log!(lvl, cat_1 = "chashu", cat_2 = "nori", cat_count = 2; "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}");
213 log!(target: "my_target", lvl, "also dogs" = "Fílos", "key/that-can't/be/an/ident" = "hi"; "hello {world}", world = "world");
216 all_log_macros!(target: "my_target", "also dogs" = "Fílos", "key/that-can't/be/an/ident" = "hi"; "hello {world}", world = "world");
237 "hello world"