Skip to content

Commit

Permalink
feat(xcode): Print redirected output file path when going to the back…
Browse files Browse the repository at this point in the history
…ground (#1920)
  • Loading branch information
krystofwoldrich committed Jan 29, 2024
1 parent 9721ea0 commit b13185c
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/utils/xcode.rs
Original file line number Diff line number Diff line change
Expand Up @@ -403,9 +403,12 @@ impl<'a> MayDetach<'a> {
return Ok(false);
}

let output_file = TempFile::create()?;

println!("Continuing in background.");
println!("Output is redirected to {}", output_file.path().display());
show_notification("Sentry", &format!("{} starting", self.task_name))?;
let output_file = TempFile::create()?;

daemonize_redirect(
Some(output_file.path()),
Some(output_file.path()),
Expand Down

0 comments on commit b13185c

Please sign in to comment.