macro_rules! log_crypto {
    (error $text:expr) => { ... };
    (error $fmt:literal, $($arg:expr),+) => { ... };
    (warn $text:expr) => { ... };
    (warn $fmt:literal, $($arg:expr),+) => { ... };
    ($text:expr) => { ... };
    ($fmt:literal, $($arg:expr),+) => { ... };
}