File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -561,7 +561,7 @@ export default class Espresso {
561561
562562 this . isShuttingDown = true ;
563563 this . clearLine ( ) ;
564- logger . warn ( 'Received interrupt signal, stopping test runs...' ) ;
564+ logger . info ( 'Received interrupt signal, stopping test runs...' ) ;
565565
566566 this . stopActiveRuns ( )
567567 . then ( ( ) => {
Original file line number Diff line number Diff line change @@ -199,9 +199,6 @@ export default class Maestro {
199199 this . detectedPlatform = await this . detectPlatform ( ) ;
200200 }
201201
202- if ( ! this . options . quiet ) {
203- logger . info ( 'Uploading Maestro App' ) ;
204- }
205202 await this . uploadApp ( ) ;
206203
207204 if ( ! this . options . quiet ) {
@@ -289,6 +286,10 @@ export default class Maestro {
289286 }
290287 }
291288
289+ if ( ! this . options . quiet ) {
290+ logger . info ( 'Uploading Maestro App' ) ;
291+ }
292+
292293 // App doesn't exist (or checksum check skipped), upload it
293294 const result = await this . upload . upload ( {
294295 filePath : appPath ,
@@ -1774,7 +1775,7 @@ export default class Maestro {
17741775
17751776 this . isShuttingDown = true ;
17761777 this . clearLine ( ) ;
1777- logger . warn ( 'Received interrupt signal, stopping test runs...' ) ;
1778+ logger . info ( 'Received interrupt signal, stopping test runs...' ) ;
17781779
17791780 // Stop all active runs
17801781 this . stopActiveRuns ( )
Original file line number Diff line number Diff line change @@ -564,7 +564,7 @@ export default class XCUITest {
564564
565565 this . isShuttingDown = true ;
566566 this . clearLine ( ) ;
567- logger . warn ( 'Received interrupt signal, stopping test runs...' ) ;
567+ logger . info ( 'Received interrupt signal, stopping test runs...' ) ;
568568
569569 this . stopActiveRuns ( )
570570 . then ( ( ) => {
You can’t perform that action at this time.
0 commit comments