10 releases

0.1.9 Oct 22, 2021
0.1.8 May 28, 2019

#402 in Debugging

Download history 2/week @ 2024-02-13 32/week @ 2024-02-20 17/week @ 2024-02-27 14/week @ 2024-03-05 17/week @ 2024-03-12 13/week @ 2024-03-19 5/week @ 2024-03-26 31/week @ 2024-04-02

69 downloads per month

MIT license

3KB

rog

A Rust logger. Provides macro debugln!() and println!().

[dependencies]
rog = "0.1"

I am fed up with the days of downloading xx packages in order to print a line of logs. No third-party dependencies, no extra features, make rog simple and pure.

Example

use rog::{self, debugln};

fn main() {
    // Register the module name `main` to rog, so all debug logs under the main
    // module will be printed.
    rog::reg("main");
    debugln!("debug");
    println!("print");
}

You can run the above example with:

$ cargo run --example main

Licence

MIT


lib.rs:

A Rust logger. Provides macro debugln!() and println!().

Example

rog::reg("main");
rog::debugln!("debug");
rog::println!("print");

No runtime deps