hyperlane_log/log/constant.rs
pub static DEFAULT_LOG_DIR: &str = "./logs";
pub static ERROR_DIR: &str = "error";
pub static INFO_DIR: &str = "info";
pub static DEBUG_DIR: &str = "debug";
pub static LOG_EXTION: &str = "log";
pub static DEFAULT_LOG_FILE_START_IDX: usize = 1;
pub static DEFAULT_LOG_FILE_SIZE: usize = 1_024_000_000;