Skip to main content

fn_log

Macro fn_log 

Source
macro_rules! fn_log {
    ($class:expr, $fun:expr $(, $arg:expr)*) => { ... };
}
Expand description

Log macro: fn call

§Examples

use crate::fn_log;

fn_log!("State", "get", "cache.user");
// Logs: State::get('cache.user')