alto_logger 0.4.0

an opinionated logger that provides colorful and multi-line output
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/// Logger line breaking style
///
/// ***Note*** Defaults to MultiLine
#[non_exhaustive]
#[derive(Copy, Clone, Debug)]
pub enum StyleConfig {
    /// Use a single-line format
    SingleLine,
    /// Use a multi-line format
    MultiLine,
}

/// Defaults to Multiline
impl Default for StyleConfig {
    fn default() -> Self {
        Self::MultiLine
    }
}