hyperlane_log/log/
const.rs1pub const DEFAULT_LOG_DIR: &str = "./logs";
3
4pub const LOG_EXTENSION: &str = "log";
6
7pub const DEFAULT_LOG_FILE_START_IDX: usize = 1;
9
10pub const DEFAULT_LOG_FILE_SIZE: usize = 1_024_000_000;
12
13pub const DISABLE_LOG_FILE_SIZE: usize = 0;
15
16pub(crate) const ROOT_PATH: &str = "/";
18
19pub(crate) const POINT: &str = ".";
21
22pub(crate) const BR: &str = "\n";
24
25pub const TRACE_DIR: &str = "trace";
27
28pub const DEBUG_DIR: &str = "debug";
30
31pub const INFO_DIR: &str = "info";
33
34pub const WARN_DIR: &str = "warn";
36
37pub const ERROR_DIR: &str = "error";