macro_rules! cvlr_log {
() => { ... };
($v:expr => $t:expr ; $logger:ident) => { ... };
($v:expr => $t:expr, $( $vs:expr => $ts:expr ),+ $(,)?) => { ... };
($v:expr => $t:expr, $( $rest:tt )+) => { ... };
($v:expr => $t:expr) => { ... };
($v:expr $(,)?) => { ... };
($v:expr, $( $rest:tt )+) => { ... };
}