replicante_logging 0.1.4

Replicante common logging logic
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
/// Additional program options given to the logging configuration.
#[derive(Clone)]
pub struct Opts {
    /// The version string to attack to logs.
    pub version: String,
}

impl Opts {
    pub fn new(version: String) -> Opts {
        Opts { version }
    }
}