diff --git a/src/core/config.rs b/src/core/config.rs index 0dab260..711e4bb 100644 --- a/src/core/config.rs +++ b/src/core/config.rs @@ -175,7 +175,7 @@ pub struct LoggingConfig { } fn default_retention_days() -> u32 { - 30 + 7 } fn default_file_logging() -> bool { diff --git a/src/core/logging.rs b/src/core/logging.rs index 3481ee3..c55edd9 100644 --- a/src/core/logging.rs +++ b/src/core/logging.rs @@ -65,7 +65,7 @@ pub fn build_file_filter() -> EnvFilter { return EnvFilter::from_default_env(); } - EnvFilter::new("lore=debug,warn") + EnvFilter::new("lore=info") } pub fn cleanup_old_logs(log_dir: &Path, retention_days: u32) -> usize {