Log
2025年5月8日小于 1 分钟hyperlanewebrustlogtype
提示
hyperlane
框架的 Log
(使用参考 官方文档)内部具体类型定义如下
pub type ListLog = Vec<(String, ArcLogFunc)>;
pub type LogListArcLock = Arc<RwLock<ListLog>>;
pub type LogArcLock = Arc<RwLock<Log>>;
pub type LogFunc = dyn LogFuncTrait;
pub type ArcLogFunc = Arc<LogFunc>;
pub type ArcLog = Arc<Log>;
#[derive(Clone, Lombok)]
pub struct Log {
pub(super) path: String,
pub(super) limit_file_size: usize,
}