gadget_sdk/
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
/// A [`trace`] log with the target `"gadget"`
///
/// [`trace`]: tracing::trace
#[macro_export]
macro_rules! trace {
    ($($tt:tt)*) => {
        $crate::tracing::trace!(target: "gadget", $($tt)*)
    }
}

/// A [`debug`] log with the target `"gadget"`
///
/// [`debug`]: tracing::debug
#[macro_export]
macro_rules! debug {
    ($($tt:tt)*) => {
        $crate::tracing::debug!(target: "gadget", $($tt)*)
    }
}

/// An [`error`] log with the target `"gadget"`
///
/// [`error`]: tracing::error
#[macro_export]
macro_rules! error {
    ($($tt:tt)*) => {
        $crate::tracing::error!(target: "gadget", $($tt)*)
    }
}

/// A [`warn`] log with the target `"gadget"`
///
/// [`warn`]: tracing::warn
#[macro_export]
macro_rules! warn {
    ($($tt:tt)*) => {
        $crate::tracing::warn!(target: "gadget", $($tt)*)
    }
}

/// An [`info`] log with the target `"gadget"`
///
/// [`info`]: tracing::info
#[macro_export]
macro_rules! info {
    ($($tt:tt)*) => {
        $crate::tracing::info!(target: "gadget", $($tt)*)
    }
}

/// Sets up the logging for any crate
pub fn setup_log() {
    use tracing_subscriber::util::SubscriberInitExt;

    let _ = tracing_subscriber::fmt::SubscriberBuilder::default()
        .without_time()
        .with_span_events(tracing_subscriber::fmt::format::FmtSpan::NONE)
        .with_env_filter(tracing_subscriber::EnvFilter::from_default_env())
        .finish()
        .try_init();
}