anvil/eth/
macros.rs

1/// A `info!` helper macro that emits to the target, the node logger listens for
2macro_rules! node_info {
3    ($($arg:tt)*) => {
4         tracing::info!(target: $crate::logging::NODE_USER_LOG_TARGET, $($arg)*);
5    };
6}
7
8pub(crate) use node_info;