Skip to content

Commit

Permalink
Disable stdout for successful device listing
Browse files Browse the repository at this point in the history
Summary: If it is successful, we rarely care about stdout, which can be quite verbose. So don't use it.

Reviewed By: antonk52

Differential Revision: D47339446

fbshipit-source-id: 66f43d4184e44ed07364a6f33715139e19b2dc1d
  • Loading branch information
lblasa authored and facebook-github-bot committed Jul 11, 2023
1 parent b1d2bf4 commit 6668420
Showing 1 changed file with 0 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,6 @@ async function queryTargetsWithXcode(
cmd,
description,
success: true,
stdout: stdout.toString(),
context,
});
return stdout
Expand Down Expand Up @@ -146,7 +145,6 @@ async function queryTargetsWithIdb(
cmd,
description,
success: true,
stdout: stdout.toString(),
context,
});

Expand Down Expand Up @@ -193,7 +191,6 @@ async function queryTargetsWithIdbCompanion(
cmd,
description,
success: true,
stdout: stdout.toString(),
context,
});

Expand Down

0 comments on commit 6668420

Please sign in to comment.