Macro cmd_lib::cmd_info[][src]

cmd_info!() { /* proc-macro */ }
Expand description

Logs a message at the info level with interpolation support

e.g:

use cmd_lib::cmd_info;
let name = "rust";
cmd_info!("hello, $name");

format should be string literals, and variable interpolation is supported.