convey 0.2.0

A Rust create for outputting information and log messages for humans and machines
Documentation
1
2
3
4
5
6
7
8
9
10
11
fn main() -> Result<(), failure::Error> {
    let output = convey::new()
        .add_target(convey::human::stdout()?)?
        .use_as_logger(log::Level::Debug)?;

    output.print("hello")?;
    log::info!("welcome");
    log::error!("oh noes");

    Ok(())
}