From acf6e3117630f28db615edb949b697c5be713917 Mon Sep 17 00:00:00 2001 From: unknowndevQwQ Date: Thu, 18 Nov 2021 03:35:59 +0800 Subject: [PATCH] Add debug flag (#465) --- crates/youki/src/logger.rs | 27 ++++++++++++++++++++------- crates/youki/src/main.rs | 6 +++++- 2 files changed, 25 insertions(+), 8 deletions(-) diff --git a/crates/youki/src/logger.rs b/crates/youki/src/logger.rs index e4d25888..7647c0ee 100644 --- a/crates/youki/src/logger.rs +++ b/crates/youki/src/logger.rs @@ -1,9 +1,12 @@ //! Default Youki Logger use anyhow::{bail, Context, Result}; +use log::LevelFilter; +use std::borrow::Cow; use std::fs::OpenOptions; use std::io::Write; use std::path::PathBuf; +use std::str::FromStr; /// If in debug mode, default level is debug to get maximum logging #[cfg(debug_assertions)] @@ -19,7 +22,18 @@ const LOG_FORMAT_JSON: &str = "json"; /// Initialize the logger, must be called before accessing the logger /// Multiple parts might call this at once, but the actual initialization /// is done only once due to use of OnceCell -pub fn init(log_file: Option, log_format: Option) -> Result<()> { +pub fn init( + log_debug_flag: bool, + log_file: Option, + log_format: Option, +) -> Result<()> { + let filter: Cow = if log_debug_flag { + "debug".into() + } else if let Ok(level) = std::env::var("YOUKI_LOG_LEVEL") { + level.into() + } else { + DEFAULT_LOG_LEVEL.into() + }; let formatter = match log_format.as_deref() { None | Some(LOG_FORMAT_TEXT) => text_write, Some(LOG_FORMAT_JSON) => json_write, @@ -36,12 +50,11 @@ pub fn init(log_file: Option, log_format: Option) -> Result<()> } else { env_logger::Target::Stderr }; - env_logger::Builder::from_env( - env_logger::Env::default().filter_or("YOUKI_LOG_LEVEL", DEFAULT_LOG_LEVEL), - ) - .format(formatter) - .target(target) - .init(); + env_logger::Builder::new() + .filter_level(LevelFilter::from_str(filter.as_ref()).context("failed to parse log level")?) + .format(formatter) + .target(target) + .init(); Ok(()) } diff --git a/crates/youki/src/main.rs b/crates/youki/src/main.rs index bd6b0886..d61d3584 100644 --- a/crates/youki/src/main.rs +++ b/crates/youki/src/main.rs @@ -38,6 +38,10 @@ use nix::unistd::getuid; #[derive(Parser, Debug)] #[clap(version = crate_version!(), author = "youki team")] struct Opts { + /// change log level to debug. + // Example in future : '--debug change log level to debug. (default: "warn")' + #[clap(long)] + debug: bool, #[clap(short, long)] log: Option, #[clap(long)] @@ -104,7 +108,7 @@ fn main() -> Result<()> { let opts = Opts::parse(); - if let Err(e) = crate::logger::init(opts.log, opts.log_format) { + if let Err(e) = crate::logger::init(opts.debug, opts.log, opts.log_format) { eprintln!("log init failed: {:?}", e); }