scribe-rust

Scribe-rust is a straightforward and color-coded logging library for Rust applications. It provides an easy-to-use API to log messages with different severity levels. Here's what you can expect from scribe-rust:

As an Example

```rust let logger = Logger::default();

logger.info("Starting My Service!");

[derive(Debug)]

pub enum ActionType { Lambda, Webhook, }

let action_type = ActionType::Lambda;

logger.debug(&format!("Executing {:?} Action...", action_type)); ```

**Please note: as of the current version, scribe-rust is designed for simplicity and ease of use. It focuses on console output and does not yet support logging to files, remote systems, or custom message formatting. Future enhancements may add these and other advanced features.