aboutsummaryrefslogtreecommitdiffstats
path: root/lib/config.js
diff options
context:
space:
mode:
authorShadi Haidar <sh1986@att.com>2018-06-15 16:18:11 -0400
committerShadi Haidar <sh1986@att.com>2018-06-19 11:56:24 -0400
commitb81d08b3260f1da96f87d6c6c6433017a5dce080 (patch)
treef88d3862ca6d4097361f85a8f02a19b662258b99 /lib/config.js
parent7a91f8c03b2f177568dd02436df0bd908d8bb293 (diff)
Extend API with tenant name
remove cloudify.uploadBlueprint() from cloudify.js debug log Issue-ID: DCAEGEN2-548 Change-Id: I800766aab4e95a945477c0a6eeb5adfc41a1203d Signed-off-by: Shadi Haidar <sh1986@att.com>
Diffstat (limited to 'lib/config.js')
-rw-r--r--lib/config.js1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/config.js b/lib/config.js
index 700f95d..fd7d38c 100644
--- a/lib/config.js
+++ b/lib/config.js
@@ -214,6 +214,7 @@ exports.configure = function() {
throw new Error ("Required configuration elements missing: " + missing.join(','));
config = null;
}
+ console.log( (new Date()) + ": config -> " + JSON.stringify(config, undefined, 2));
return config;
});
};