pub fn init_logger()
Expand description
Initialize the default logger with INFO level logging.
This sets up structured logging with reasonable defaults for most use cases.
The logger will respect the RUST_LOG
environment variable if set.
ยงExamples
use hyperliquid_backtest::logging::init_logger;
init_logger();
log::info!("Logger initialized successfully");