Lines Matching refs:target

21         log!(target: "my_target", lvl, "hello");
22 log!(target: "my_target", lvl, "hello",);
31 all_log_macros!(target: "my_target", "hello");
32 all_log_macros!(target: "my_target", "hello",);
41 log!(target: "my_target", lvl, "hello {}", "world");
42 log!(target: "my_target", lvl, "hello {}", "world",);
51 all_log_macros!(target: "my_target", "hello {}", "world");
52 all_log_macros!(target: "my_target", "hello {}", "world",);
61 log!(target: "my_target", lvl, "hello {world}", world = "world");
62 log!(target: "my_target", lvl, "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",);
78 let _enabled = if log_enabled!(target: "my_target", lvl) {
97 log!(target: "my_target", lvl, cat_1 = "chashu", cat_2 = "nori", cat_count = 2; "hello");
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");
111 log!(target: "my_target", lvl, cat_math = { let mut x = 0; x += 1; x + 1 }; "hello");
113 log!(lvl, target = "my_target", cat_math = { let mut x = 0; x += 1; x + 1 }; "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");
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");
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");
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");
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");
157 info!(target: "target", cat_1 = cat_1, cat_2 = "nori"; "hello {}", "cats")
172 log!(target: "my_target", lvl, "hello {world}");
173 log!(target: "my_target", lvl, "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}",);
198 log!(target: "my_target", 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}");
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");