This commit is contained in:
LunarAkai 2025-08-19 23:32:35 +02:00
commit e48fff45f0
4 changed files with 21 additions and 2 deletions

View file

@ -7,4 +7,5 @@ authors.workspace = true
[dependencies]
log = "*"
fern = { version = "0.7", features = ["colored"] }
humantime = "*"
humantime = "*"
anyhow = "1"

View file

@ -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);