hyperlane_log/log/
struct.rs

1/// Configuration for log file output.
2///
3/// Contains settings for log file path and size limits.
4#[derive(Clone)]
5pub struct Log {
6    /// Path to the log file.
7    pub(super) path: String,
8    /// Maximum size limit for log files in bytes.
9    pub(super) limit_file_size: usize,
10}