Macro scrypto::info

source ·
macro_rules! info {
    ($($args: expr),+) => { ... };
}
Expand description

Logs an INFO message.

Example

use scrypto::prelude::*;

info!("Input number: {}", 100);