소스 검색

chore(cli): force iOS cargo build stdout

Lucas Nogueira 2 년 전
부모
커밋
02706c92f6
1개의 변경된 파일8개의 추가작업 그리고 3개의 파일을 삭제
  1. 8 3
      tooling/cli/src/mobile/ios/dev.rs

+ 8 - 3
tooling/cli/src/mobile/ios/dev.rs

@@ -145,7 +145,7 @@ fn run_dev(
       if open {
         open_and_wait(config, &env)
       } else {
-        match run(device.as_deref(), options, config, &env, noise_level) {
+        match run(device.as_deref(), options, config, &env) {
           Ok(c) => {
             crate::dev::wait_dev_process(c.clone(), move |status, reason| {
               crate::dev::on_app_exit(status, reason, exit_on_panic, no_watch)
@@ -178,7 +178,6 @@ fn run(
   options: MobileOptions,
   config: &AppleConfig,
   env: &Env,
-  noise_level: NoiseLevel,
 ) -> Result<DevChild, RunError> {
   let profile = if options.debug {
     Profile::Debug
@@ -190,7 +189,13 @@ fn run(
 
   device_prompt(env, device)
     .map_err(|e| RunError::FailedToPromptForDevice(e.to_string()))?
-    .run(config, env, noise_level, non_interactive, profile)
+    .run(
+      config,
+      env,
+      NoiseLevel::FranklyQuitePedantic,
+      non_interactive,
+      profile,
+    )
     .map(DevChild::new)
     .map_err(|e| RunError::RunFailed(e.to_string()))
 }