Crate rog[][src]

Expand description

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

Example

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

Macros

Debugs to the standard output, with a newline.

Prints to the standard output, with a newline.

Functions

Returns a hashset indicating which modules have been registered.

Register a series of module names, the logs in this module will be printed.