heat_sdk_cli/
logging.rs

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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
#![allow(dead_code)]

use colored::{Colorize, CustomColor};

pub const BURN_ORANGE: CustomColor = CustomColor {
    r: 254,
    g: 75,
    b: 0,
};

pub fn print_err(err_message: &str) {
    eprintln!(
        "[{}] {}: {}",
        "heat-sdk-cli".custom_color(BURN_ORANGE),
        "error".red().bold(),
        err_message
    );
}

#[macro_export]
macro_rules! print_err {
    ($($arg:tt)*) => {
        $crate::logging::print_err(&format!($($arg)*));
    };
}

pub fn print_warn(warn_message: &str) {
    println!(
        "[{}] {}: {}",
        "heat-sdk-cli".custom_color(BURN_ORANGE),
        "warning".yellow().bold(),
        warn_message
    );
}

#[macro_export]
macro_rules! print_warn {
    ($($arg:tt)*) => {
        $crate::logging::print_warn(&format!($($arg)*));
    };
}

pub fn print_info(info_message: &str) {
    println!(
        "[{}] {}: {}",
        "heat-sdk-cli".custom_color(BURN_ORANGE),
        "info".cyan().bold(),
        info_message
    );
}

#[macro_export]
macro_rules! print_info {
    ($($arg:tt)*) => {
        $crate::logging::print_info(&format!($($arg)*));
    };
}

#[cfg(debug_assertions)]
pub fn print_debug(debug_message: &str) {
    println!(
        "[{}] {}: {}",
        "heat-sdk-cli".custom_color(BURN_ORANGE),
        "debug".green().bold(),
        debug_message
    );
}

#[cfg(not(debug_assertions))]
pub fn print_debug(_debug_message: &str) {}

#[macro_export]
macro_rules! print_debug {
    ($($arg:tt)*) => {
        #[cfg(debug_assertions)]
        $crate::logging::print_debug(&format!($($arg)*));
    };
}