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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
/// Logs a message at the error level.
///
/// # Example
///
/// ```
/// use edjx::error;
///
/// # fn init() {
/// let (err_info, port) = ("No connection", 22);
///
/// error!("Error: {} on port {}", err_info, port);
/// error!(target: "app_events", "App Error: {}, Port: {}", err_info, 22);
/// # }
/// ```
#[macro_export(local_inner_macros)]
macro_rules! error {
    ($($arg:tt)+) => (
        $crate::logger::call_host_logger(
            __log_format_args!($($arg)+),
            $crate::LogLevel::ERROR,
        );
    )
}

/// Logs a message at the info level.
///
/// # Example
///
/// ```
/// use edjx::info;
///
/// # fn main() {
/// # struct Connection { port: u32, speed: f32 }
/// let conn_info = Connection { port: 40, speed: 3.20 };
///
/// info!("Connected to port {} at {} Mb/s", conn_info.port, conn_info.speed);
/// info!(target: "connection_events", "Successfull connection, port: {}, speed: {}",
///       conn_info.port, conn_info.speed);
/// # }
/// ```
#[macro_export(local_inner_macros)]
macro_rules! info {
    ($($arg:tt)+) => (
        $crate::logger::call_host_logger(
            __log_format_args!($($arg)+),
            $crate::LogLevel::INFO,
        );
    )
}

/// Logs a message at the warn level.
///
/// # Example
///
/// ```
/// use edjx::warn;
///
/// # fn main() {
/// let warn_description = "Invalid Input";
///
/// warn!("Warning! {}!", warn_description);
/// warn!(target: "input_events", "App received warning: {}", warn_description);
/// # }
/// ```
#[macro_export(local_inner_macros)]
macro_rules! warn {
    ($($arg:tt)+) => (
        $crate::logger::call_host_logger(
            __log_format_args!($($arg)+),
            $crate::LogLevel::WARN,
        );
    )
}

/// Logs a message at the debug level.
///
/// # Example
///
/// ```
/// use edjx::debug;
///
/// # fn main() {
/// # struct Position { x: f32, y: f32 }
/// let pos = Position { x: 3.234, y: -1.223 };
///
/// debug!("New position: x: {}, y: {}", pos.x, pos.y);
/// debug!(target: "app_events", "New position: x: {}, y: {}", pos.x, pos.y);
/// # }
/// ```
#[macro_export(local_inner_macros)]
macro_rules! debug {
    ($($arg:tt)+) => (
        $crate::logger::call_host_logger(
            __log_format_args!($($arg)+),
            $crate::LogLevel::DEBUG,
        );
    )
}

/// Logs a message at the trace level.
///
/// # Example
///
/// ```
/// use edjx::trace;
///
/// # fn main() {
/// # struct Position { x: f32, y: f32 }
/// let pos = Position { x: 3.234, y: -1.223 };
///
/// trace!("Position is: x: {}, y: {}", pos.x, pos.y);
/// trace!(target: "app_events", "x is {} and y is {}",
///        if pos.x >= 0.0 { "positive" } else { "negative" },
///        if pos.y >= 0.0 { "positive" } else { "negative" });
/// # }
/// ```
#[macro_export(local_inner_macros)]
macro_rules! trace {
    ($($arg:tt)+) => (
        $crate::logger::call_host_logger(
            __log_format_args!($($arg)+),
            $crate::LogLevel::TRACE,
        );
    )
}

/// Logs a message at the fatal level.
///
/// # Example
///
/// ```
/// use edjx::fatal;
///
/// # fn init() {
/// let (fatal_info, port) = ("Failed connection", 22);
///
/// error!("Fatal: {} on port {}", fatal_info, port);
/// error!(target: "app_events", "App Error: {}, Port: {}", fatal_info, port);
/// # }
/// ```
#[macro_export(local_inner_macros)]
macro_rules! fatal {
    ($($arg:tt)+) => (
        $crate::logger::call_host_logger(
            __log_format_args!($($arg)+),
            $crate::LogLevel::FATAL,
        );
    )
}

#[doc(hidden)]
#[macro_export]
macro_rules! __log_format_args {
    ($($args:tt)*) => {
        format_args!($($args)*)
    };
}