wasmer/lib/runtime/src/macros.rs

6 lines
332 B
Rust
Raw Normal View History

2019-01-17 18:55:25 +00:00
#[macro_export]
2019-01-08 17:09:47 +00:00
macro_rules! debug {
($fmt:expr) => (if cfg!(any(debug_assertions, feature="debug")) { println!(concat!("wasmer-runtime(:{})::", $fmt), line!()) });
($fmt:expr, $($arg:tt)*) => (if cfg!(any(debug_assertions, feature="debug")) { println!(concat!("wasmer-runtime(:{})::", $fmt, "\n"), line!(), $($arg)*) });
}