style: cargo fmt --all (v0.20.x logging r2 feature follow-up)

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
This commit is contained in:
2026-05-28 06:34:01 +00:00
parent 35c987df1c
commit 9a36a06f97
9 changed files with 48 additions and 60 deletions

View File

@@ -54,10 +54,7 @@ ingest_log_dir = "{state_dir}/logs"
"#;
let w: LoggingWrapper = toml::from_str(toml).expect("old logging config must parse");
assert!(w.logging.ingest_log_enabled);
assert_eq!(
w.logging.ingest_log_dir,
PathBuf::from("{state_dir}/logs")
);
assert_eq!(w.logging.ingest_log_dir, PathBuf::from("{state_dir}/logs"));
assert_eq!(
w.logging.keep_recent_runs, 100,
"keep_recent_runs must default to 100"