1use lombok_macros::{Data, New}; 2 3/// Custom logger implementation for the hyperlane-cli. 4/// 5/// Implements the `log::Log` trait to provide colored console output 6/// matching the euv CLI log format. 7#[derive(Data, New)] 8pub struct Logger;