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

alexkli pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/openwhisk-wskdebug.git


The following commit(s) were added to refs/heads/master by this push:
     new 77bd556  keeps showing "Installing agent" spinner #65
77bd556 is described below

commit 77bd55674a86cdadf5c0ec423cea3e79f0721f1e
Author: Alexander Klimetschek <[email protected]>
AuthorDate: Tue Jul 14 22:29:30 2020 -0700

    keeps showing "Installing agent" spinner #65
    
    also fix wording
---
 src/agentmgr.js | 2 +-
 src/debugger.js | 1 +
 2 files changed, 2 insertions(+), 1 deletion(-)

diff --git a/src/agentmgr.js b/src/agentmgr.js
index 34b182d..585d9e0 100644
--- a/src/agentmgr.js
+++ b/src/agentmgr.js
@@ -450,7 +450,7 @@ class AgentMgr {
                 await deleteActionIfExists(this.wsk, 
`${this.actionName}_wskdebug_completed`);
 
             } else if (!isStartup) {
-                log.log(`Following helper actions are not removed to make 
shutdown fast. Remove using --cleanup if desired.`);
+                log.log(`Following helper actions are not removed to keep 
shutdown fast. Remove using --cleanup if desired.`);
                 log.log(`- ${log.highlightColor(copy)}`);
                 if (!this.concurrency && !this.ngrokAgent) {
                     log.log("- " + 
log.highlightColor(`${this.actionName}_wskdebug_invoked`));
diff --git a/src/debugger.js b/src/debugger.js
index e0db32a..f2e1596 100644
--- a/src/debugger.js
+++ b/src/debugger.js
@@ -169,6 +169,7 @@ class Debugger {
     }
 
     async logDetails() {
+        log.stopSpinner();
         log.log();
         log.highlight("Action     : ", 
`/${this.wskProps.namespace}/${this.actionName}`);
         if (this.sourcePath) {

Reply via email to