emolog 0.1.2

Emoji based logger for debugging
Documentation
  • Coverage
  • 0%
    0 out of 6 items documented0 out of 0 items with examples
  • Size
  • Source code size: 43.84 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 1.07 MB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 9s Average build duration of successful builds.
  • all releases: 8s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • tapanprakasht/emolog
    0 0 0
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • tapanprakasht

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