Skip to main content

lux_core/
lib.rs

1pub mod config;
2pub mod error;
3pub mod traits;
4pub mod types;
5
6#[macro_export]
7macro_rules! log_verbose {
8    ($($arg:tt)*) => {
9        if std::env::var("ALX_VERBOSE").is_ok() {
10            eprintln!("\x1b[1;35m[DEBUG]\x1b[0m {}", format!($($arg)*));
11        }
12    };
13}