mirror of
https://github.com/fabro-sh/fabro.git
synced 2026-09-06 08:18:58 +00:00
Print logs directory at pipeline start in verbose mode
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
parent
480364c2b0
commit
36e37e5458
1 changed files with 8 additions and 0 deletions
|
|
@ -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 {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue