diff --git a/crates/api-grub/src/logger.rs b/crates/api-grub/src/logger.rs index ea5fc03..d9320fc 100644 --- a/crates/api-grub/src/logger.rs +++ b/crates/api-grub/src/logger.rs @@ -19,20 +19,6 @@ use tracing::info; /// *depends on* : - /// pub async fn setup_logger() -> Result<()> { - // Builder::new() - // .format(move |buf, record| { - // writeln!( - // buf, - // "|{}| {} [{}] - {}", - // "api-grubber", - // Local::now().format("%d-%m-%Y %H:%M:%S"), - // record.level(), - // record.args(), - // ) - // }) - // .filter(None, LevelFilter::Info) - // .target(env_logger::Target::Stdout) - // .init(); let log_level = std::env::var("IM_LOG_INFO").unwrap_or_else(|_| String::from("INFO")); tracing_subscriber::fmt()