diff options
| author | Allen Hutchison <[email protected]> | 2025-06-18 11:40:15 -0700 |
|---|---|---|
| committer | GitHub <[email protected]> | 2025-06-18 11:40:15 -0700 |
| commit | fbc79c34c9eb05dcefa4618a6863360ec2b46277 (patch) | |
| tree | 724cec98a05f58eff4cc7b79ba1cfb8f02c6d55d /packages/cli/src/utils/sandbox.ts | |
| parent | 589a7b59c61f0477196ff3c4eec59418367387b4 (diff) | |
Fix noise in headless mode on STDOUT (#1184)
Diffstat (limited to 'packages/cli/src/utils/sandbox.ts')
| -rw-r--r-- | packages/cli/src/utils/sandbox.ts | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/packages/cli/src/utils/sandbox.ts b/packages/cli/src/utils/sandbox.ts index 9e9ab1a7..48386357 100644 --- a/packages/cli/src/utils/sandbox.ts +++ b/packages/cli/src/utils/sandbox.ts @@ -203,6 +203,7 @@ export async function start_sandbox(config: SandboxConfig) { ); process.exit(1); } + // Log on STDERR so it doesn't clutter the output on STDOUT console.error(`using macos seatbelt (profile: ${profile}) ...`); // if DEBUG is set, convert to --inspect-brk in NODE_OPTIONS const args = [ |
