1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
//!
//!
//! Contains helper functions for outputting to
//! `stdout` and `stderr`.
//!
#[cfg(feature = "timestamps")]
use crate::timestamp;

use crate::formatter::Formatter;
use std::fmt::Display;



/// Basically print! without all the argument formatting.
/// It does however replace keys with their respective color
/// codes and adds timestamps if feature is enabled.
pub fn stdout<T>(message: T, line_ending: &str) where T: Display {
    #[cfg(feature = "timestamps")] {
        let timestamp = timestamp::now();
        let message = format!("{}{}{}", timestamp, message, line_ending);
        print!("{}", Formatter::colorize_string(message));
    }

    #[cfg(not(feature = "timestamps"))] {
        let message = format!("{}{}", message, line_ending);
        print!("{}", Formatter::colorize_string(message));
    }
}


/// Basically eprint! without all the argument formatting.
/// It does however replace keys with their respective color
/// codes and adds timestamps if feature is enabled.
pub fn stderr<T>(message: T, line_ending: &str) where T: Display {
    #[cfg(feature = "timestamps")] {
        let timestamp = timestamp::now();
        let message = format!("{}{}{}", timestamp, message, line_ending);
        eprint!("{}", Formatter::colorize_string(message));
    }

    #[cfg(not(feature = "timestamps"))] {
        let message = format!("{}{}", message, line_ending);
        eprint!("{}", Formatter::colorize_string(message));
    }
}