Skip to content

Commit b13185c

Browse files
feat(xcode): Print redirected output file path when going to the background (#1920)
1 parent 9721ea0 commit b13185c

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/utils/xcode.rs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -403,9 +403,12 @@ impl<'a> MayDetach<'a> {
403403
return Ok(false);
404404
}
405405

406+
let output_file = TempFile::create()?;
407+
406408
println!("Continuing in background.");
409+
println!("Output is redirected to {}", output_file.path().display());
407410
show_notification("Sentry", &format!("{} starting", self.task_name))?;
408-
let output_file = TempFile::create()?;
411+
409412
daemonize_redirect(
410413
Some(output_file.path()),
411414
Some(output_file.path()),

0 commit comments

Comments
 (0)