Lines Matching refs:structured_log
16 use structured_log::structured_log;
17 use structured_log::StructuredLogSection::SubsectionEnd;
18 use structured_log::StructuredLogSection::SubsectionStart;
19 use structured_log::LOG_ID_EVENTS;
25 let res = structured_log!(TAG_KEY_SAMPLE, 5i32); in log_i32()
31 let res = structured_log!(log_id: LOG_ID_EVENTS, TAG_KEY_SAMPLE, 5i64); in log_i64()
37 let res = structured_log!(TAG_KEY_SAMPLE, 5f32); in log_f32()
43 let res = structured_log!(TAG_KEY_SAMPLE, "test string"); in log_str()
49 let res = structured_log!(TAG_KEY_SAMPLE, "test message", 10f32); in log_two_entries()
55 let res = structured_log!(TAG_KEY_SAMPLE, "test message", 10f32, 4i32, 4i32, 4i32, 4i32); in log_multiple_entries()
61 let res = structured_log!(TAG_KEY_SAMPLE, SubsectionStart, "test message", SubsectionEnd); in log_subsection()
67 let res = structured_log!(TAG_KEY_SAMPLE, SubsectionEnd, "test message", SubsectionStart); in log_subsection_start_end_swapped()
73 let res = structured_log!(TAG_KEY_SAMPLE, "test message", SubsectionEnd); in log_subsection_missing_start()
79 let res = structured_log!(TAG_KEY_SAMPLE, SubsectionStart, "test message"); in log_subsection_missing_end()
85 let res = structured_log!( in log_two_subsection()
99 let res = structured_log!( in log_simple_entry_and_subsection()
112 let res = structured_log!( in mixed_subsection()