Skip to content

DoumanAsh/cute-log

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

32 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

cute-log

Rust Crates.io Documentation

Simple and cute log

Usage

fn main() {
    const LOGGER: cute_log::Logger = cute_log::Logger::new();
    LOGGER.set_max_level(cute_log::log::LevelFilter::Info);
    let _ = LOGGER.set_logger();
    log::info!("it works!");
}

Available features

  • timestamp - Enables timestamp in logs. Enabled by default.
  • std - Enables use of std feature to provide RUST_LOG handling.

Log level control

The logger is made without any builtin filters.

You can either control logs through compile time features of log crate. Or use set_max_level.

Supported platforms

  • Android - via NDK logging library, therefore it must be linked.
  • Wasm - via web console API.
  • Any other platform with std available.

About

Simple and cute logger for Rust's log crate

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages