You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cordova.apache.org by ja...@apache.org on 2019/04/13 17:36:22 UTC

[cordova-ios] 06/06: prefix log from simulator to make it recognizable

This is an automated email from the ASF dual-hosted git repository.

janpio pushed a commit to branch janpio-594_deployment
in repository https://gitbox.apache.org/repos/asf/cordova-ios.git

commit 6e8d114050595fbdceb3357ce3d2f32dde9bb9bc
Author: Jan Piotrowski <pi...@gmail.com>
AuthorDate: Sat Apr 13 19:36:02 2019 +0200

    prefix log from simulator to make it recognizable
---
 bin/templates/scripts/cordova/lib/run.js | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/bin/templates/scripts/cordova/lib/run.js b/bin/templates/scripts/cordova/lib/run.js
index 1bc8c16..792e0bf 100644
--- a/bin/templates/scripts/cordova/lib/run.js
+++ b/bin/templates/scripts/cordova/lib/run.js
@@ -210,7 +210,7 @@ function iossimLaunch (appPath, devicetypeid, log, exit) {
     var proc = cp.spawn(f, params);
     
     proc.stdout.on('data', (data) => {
-        console.log(data.toString());
+        console.log("Data from simulator: " + data.toString());
     });
 }
 


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@cordova.apache.org
For additional commands, e-mail: commits-help@cordova.apache.org