[][src]Crate devout

Devout

A simple cross-platform logging library.

Example

use devout::*;

fix!("FIXME: {}", 12);
dev!("Test: {}", 40);
out!("Result: {}", 4.4);

Macros

dev

Print line to stderr. Use for messages that will print in development, but not in production.

fix

Print line to stderr. Use for runtime cases where something should be fixed. It does not have to be detremental.

out

Print line to stdout. Use for messages that will print in production.