pub fn info(now: &str, message: &str)
Expand description
ยงInfo
Outputs an info message via log_info!
macros.
You can also use just an info
method instead, but it requires you to define any variable as &str
E.g:
use logger_rust::info;
use logger_rust::current_time;
info(¤t_time(), "An info message");