From 36e37e54584e8a2e0afe137c5484c55f3b9dce0c Mon Sep 17 00:00:00 2001 From: Bryan Helmkamp Date: Mon, 23 Feb 2026 16:33:28 -0500 Subject: [PATCH] Print logs directory at pipeline start in verbose mode Co-Authored-By: Claude Opus 4.6 --- crates/attractor/src/cli/run.rs | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/crates/attractor/src/cli/run.rs b/crates/attractor/src/cli/run.rs index 29a790169..c07b44fb5 100644 --- a/crates/attractor/src/cli/run.rs +++ b/crates/attractor/src/cli/run.rs @@ -58,6 +58,14 @@ pub async fn run_command(args: RunArgs, styles: &'static Styles) -> anyhow::Resu }); tokio::fs::create_dir_all(&logs_dir).await?; + if args.verbose >= 1 { + eprintln!( + "{dim}Logs: {}{reset}", + logs_dir.display(), + dim = styles.dim, reset = styles.reset, + ); + } + // 3. Build event emitter let mut emitter = EventEmitter::new(); if args.verbose >= 2 {