Crates.io | rall |
lib.rs | rall |
version | 0.3.0 |
source | src |
created_at | 2022-04-02 00:13:50.546903 |
updated_at | 2022-04-03 08:53:09.146167 |
description | Really...? Another Logging Library? Yes! Incredibly Intuitive & Simple |
homepage | |
repository | https://github.com/sgoudham/rall |
max_upload_size | |
id | 560599 |
size | 71,304 |
Yes! :P
rall is an incredibly simple and intuitive logger, consider this crate a failure if you can't get setup within 30 seconds!
And much more to come... soon™!
For the fastest setup possible, declarative macros are exposed that have a predefined format. This is to allow hassle-free and painless setup that will let you log instantly!
use rall::{debug, error, fatal, info, trace, warn};
// Log Out To Standard Output
trace!("My Best Friend Hazel :D");
debug!("My Best Friend Hazel :D");
info!("My Best Friend Hazel :D");
warn!("My Best Friend Hazel :D");
error!("My Best Friend Hazel :D");
fatal!("My Best Friend Hazel :D");
I'm still incredibly early in my Rust journey and so I wanted to get comfortable and try to pick my own brain about exposing different API's in a Rust crate. I hope to expose an intuitive and easy to understand API design that users can instantly get started with.