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/06/20 09:18:15 UTC

[cordova-paramedic] branch master updated: refactor: Better (and less confusing) pollForResults error message prefix

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

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


The following commit(s) were added to refs/heads/master by this push:
     new 224c026  refactor: Better (and less confusing) pollForResults error message prefix
224c026 is described below

commit 224c026ddd6317b63fb019d656fa05ca3ee6e5a7
Author: Jan Piotrowski <pi...@gmail.com>
AuthorDate: Thu Jun 20 11:18:11 2019 +0200

    refactor: Better (and less confusing) pollForResults error message prefix
---
 lib/ParamedicSauceLabs.js | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/lib/ParamedicSauceLabs.js b/lib/ParamedicSauceLabs.js
index 2cf679e..b9b8718 100644
--- a/lib/ParamedicSauceLabs.js
+++ b/lib/ParamedicSauceLabs.js
@@ -489,7 +489,7 @@ class ParamedicSauceLabs {
                                     polling = false;
                                 })
                                 .fail((error) => {
-                                    logger.warn('appium: ' + error);
+                                    logger.warn('cordova-paramedic, pollForResults error: ' + error);
                                     polling = false;
                                 });
                         }
@@ -502,7 +502,7 @@ class ParamedicSauceLabs {
                 logger.normal('cordova-paramedic: Tests finished');
                 isTestPassed = result;
             }, (error) => {
-                logger.normal('cordova-paramedic: Tests failed to complete; ending appium session. The error is:\n' + error.stack);
+                logger.normal('cordova-paramedic: Tests failed to complete; ending session. The error is:\n' + error.stack);
             })
             .fin(() => {
                 if (pollForResults) {


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