3 releases

new 0.1.2 Jan 14, 2025
0.1.1 Jan 14, 2025
0.1.0 Jan 14, 2025

#332 in Debugging

Download history 248/week @ 2025-01-11

251 downloads per month

MIT license

41KB

emolog

emolog is a simple logging library which shows emojis in the log messages.

Usage

use emolog::{emolog_critical, emolog_error, emolog_info, emolog_success, emolog_warn};

fn main() {
    emolog_info!("Your info message goes here");
    emolog_warn!("Your warning message goes here");
    emolog_success!("Your success message goes here");
    emolog_error!("Your error message goes here");
    emolog_critical!("Your critical message goes here");
}

Output

No runtime deps