macro_rules! assert_in_logs {
($texts:expr) => { ... };
}Expand description
Asserts that the given sequence of texts appears in the captured logs in order.
This macro is intended for use in tests. It checks that each string in the provided slice appears in the log buffer for the current test thread, in the specified order. If any expected text is missing, the macro panics and prints the captured logs for debugging.