loga 0.5.4

Combined logging and error handling
Documentation
pub mod entry;
pub mod common;
pub mod types;
pub mod conversion;

pub use types::{
    Error,
    Log,
};
pub use entry::{
    err,
    err_with,
    agg_err,
    agg_err_with,
    fatal,
};
pub use common::{
    DebugDisplay,
    Level,
    DEBUG,
    INFO,
    WARN,
    ERR,
};
pub use conversion::{
    ErrContext,
    ResultContext,
};

/// Re-exported dependencies used in interfaces, etc.
pub mod republish {
    pub use console;
}