captains-log 0.15.4

A minimalist customizable logger for rust, based on the `log` crate, but also adapted to `tracing`, for production and testing scenario.
Documentation
use captains_log::*;

#[cfg(feature = "syslog")]
#[test]
fn test_syslog() {
    let _ = recipe::syslog_local(syslog::Facility::LOG_USER, Level::Debug)
        .test()
        .build()
        .expect("setup");
    info!("begin syslog test");
    for _ in 0..10 {
        trace!("test syslog trace");
        debug!("test syslog debug");
        info!("test syslog info");
        warn!("test syslog warn");
        error!("test syslog error");
        println!("sleep");
        std::thread::sleep(std::time::Duration::from_secs(1));
    }
}