hmm
This commit is contained in:
parent
3bbfcc7710
commit
e48fff45f0
4 changed files with 21 additions and 2 deletions
|
|
@ -7,4 +7,5 @@ authors.workspace = true
|
|||
[dependencies]
|
||||
log = "*"
|
||||
fern = { version = "0.7", features = ["colored"] }
|
||||
humantime = "*"
|
||||
humantime = "*"
|
||||
anyhow = "1"
|
||||
|
|
@ -1,6 +1,8 @@
|
|||
//! Wrapper around `log` and `fern` crates
|
||||
use std::{fmt::Display, io, time::SystemTime};
|
||||
|
||||
pub use anyhow;
|
||||
|
||||
/// Configures the Log Output Settings
|
||||
pub fn configere_logger() -> Result<(), fern::InitError> {
|
||||
let base_config = fern::Dispatch::new().level(log::LevelFilter::Info);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue