You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@openwhisk.apache.org by al...@apache.org on 2020/04/14 19:31:19 UTC

[openwhisk-wskdebug] 03/03: log api host and namespace

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

commit 5d42407d482eee1bae515e241de82948144a2e4b
Author: Alexander Klimetschek <ak...@adobe.com>
AuthorDate: Tue Apr 14 12:08:16 2020 -0700

    log api host and namespace
---
 src/debugger.js | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/src/debugger.js b/src/debugger.js
index 434f71f..8e2fb42 100644
--- a/src/debugger.js
+++ b/src/debugger.js
@@ -132,11 +132,12 @@ class Debugger {
             await this.watcher.start();
 
             console.log();
-            console.info(`Action     : ${this.actionName}`);
+            console.info(`Action     : /${this.wskProps.namespace}/${this.actionName}`);
             if (this.sourcePath) {
                 console.info(`Sources    : ${this.invoker.getSourcePath()}`);
             }
             console.info(`Image      : ${this.invoker.getImage()}`);
+            console.info(`OpenWhisk  : ${this.wskProps.apihost}`);
             console.info(`Container  : ${this.invoker.name()}`);
             console.info(`Debug type : ${this.invoker.getDebugKind()}`);
             console.info(`Debug port : localhost:${this.invoker.getPort()}`);