logi

Macro logi 

Source
macro_rules! logi {
    ($msg:expr) => { ... };
}
Expand description

Macro to automatically capture file and line information for info logs Logs an informational message to the console.

ยงExamples

use fone::logi;

logi!("Application started");