implement tracing

This commit is contained in:
mbecker20
2024-01-15 01:29:26 -08:00
parent f97e48e886
commit 2b4ebd6e10
26 changed files with 163 additions and 153 deletions

View File

@@ -27,8 +27,8 @@ pub struct CliArgs {
pub extend_config_arrays: bool,
/// Configure the logging level: error, warn, info, debug, trace
#[arg(long, default_value_t = log::LevelFilter::Info)]
pub log_level: log::LevelFilter,
#[arg(long, default_value_t = tracing::Level::INFO)]
pub log_level: tracing::Level,
}
#[derive(Deserialize)]