macro_rules! session_info { ($logger:expr, $($arg:tt)*) => { ... }; }
Helper macros for session-aware logging
These macros make it convenient to log with session context without having to manually specify fields each time. Log an info message with session context
session_info!(logger, "Command received", command = "HELO");