emolog

Crates.ioemolog
lib.rsemolog
version0.1.2
created_at2025-01-14 07:39:53.263367+00
updated_at2025-01-14 09:48:18.242882+00
descriptionEmoji based logger for debugging
homepage
repositoryhttps://github.com/tapanprakasht/emolog
max_upload_size
id1515635
size44,176
Tapan Prakash (tapanprakasht)

documentation

README

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

Commit count: 9

cargo fmt