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,
};
pub mod republish {
pub use console;
}