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

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