[][src]Macro vessels::log

macro_rules! log {
    ($($args:expr),*) => { ... };
    ($($args:expr,)*) => { ... };
}

Logs information to a target-appropriate console.

log! uses the same syntax as format!, println!, etc. and delegates to format! under the hood.

use vessels::log;

log!("the answer is {}", 12);

Currently not supported inside individual vessels.