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
//! Structured logging via `tracing`.
//!
//! Initialise with [`Log::init()`] during application bootstrap. After that
//! all crates use `tracing::info!`, `tracing::error!`, etc.
//!
//! ```rust,ignore
//! use ravel_core::log::Log;
//! Log::init("info");
//! tracing::info!("Application started");
//! ```
use OnceLock;
use EnvFilter;
/// Logger initialisation helper.
;
static INIT: = new;
/// Re-export the tracing macros for convenience.
pub use ;