[][src]Crate devout

Getting Started

Add the following to your Cargo.toml:

[dependencies.devout]
version = "0.1.0"
use devout::{log, Tag};

const INFO: Tag = Tag::new("Info").show(true);

log!(INFO, "Result: {}", 4.4);

Macros

log

Write a message to the log.

Structs

Tag

A tag to identify a log.