Really...? Another Logging Library? Yes! This time written in Rust
You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
sgoudham ce4f57adea
Add datetime & declarative macros
3 years ago
.github Add github actions workflow 3 years ago
images Add Unix logs 3 years ago
src Add datetime & declarative macros 3 years ago
.gitignore Update .gitignore 3 years ago
Cargo.toml Add datetime & declarative macros 3 years ago
LICENSE Initial commit 3 years ago
README.md Update README.md 3 years ago

README.md

build crate.io downloads license

Really...? Another Logging Library?

Yes! :P

rall is an incredibly simple and intuitive logger, consider this crate a failure if you can't get setup within 30 seconds!

Feature Set

  • Logging Levels
  • Coloured Output
  • Options for Datetime, Current Function, Line Number, Custom Colours, etc.
  • Custom Formatting
  • File support

And much more to come... soon™!

Quick Start

use rall::{SimpleLogger, Level};

// Create Default SimpleLogger
let mut logger = SimpleLogger::default();

// Log Out To Standard Output
logger.log(Level::TRACE, "My Best Friend Hazel :D");
logger.log(Level::DEBUG, "My Best Friend Hazel :D");
logger.log(Level::INFO, "My Best Friend Hazel :D");
logger.log(Level::WARN, "My Best Friend Hazel :D");
logger.log(Level::ERROR, "My Best Friend Hazel :D");
logger.log(Level::FATAL, "My Best Friend Hazel :D");

Windows Output

Windows Logs

Unix Output

Unix Logs

Author Notes

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.