| Crates.io | emolog |
| lib.rs | emolog |
| version | 0.1.2 |
| created_at | 2025-01-14 07:39:53.263367+00 |
| updated_at | 2025-01-14 09:48:18.242882+00 |
| description | Emoji based logger for debugging |
| homepage | |
| repository | https://github.com/tapanprakasht/emolog |
| max_upload_size | |
| id | 1515635 |
| size | 44,176 |
emolog is a simple logging library which shows emojis in the log messages.
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