diff options
Diffstat (limited to 'openecomp-bdd/stepDefinitions/Utils.js')
-rw-r--r-- | openecomp-bdd/stepDefinitions/Utils.js | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/openecomp-bdd/stepDefinitions/Utils.js b/openecomp-bdd/stepDefinitions/Utils.js index 4a54ebe3a7..46534072f2 100644 --- a/openecomp-bdd/stepDefinitions/Utils.js +++ b/openecomp-bdd/stepDefinitions/Utils.js @@ -25,6 +25,8 @@ function _request(context, method, path, data, isBinary=false, type='onboarding' url: server + path, headers: context.headers }; + console.log('--> Calling REST ' + options.method +' url: ' + options.url); + return new Promise(function (resolve, reject) { if (method === 'POST' || method === 'PUT') { if (isBinary) { @@ -106,6 +108,8 @@ function download(context, path, filePath, callback, type='onboarding') { url: server + path, headers: context.headers }; + console.log('--> Calling REST download url: ' + options.url); + var file = fs.createWriteStream(filePath); var r = request(options).pipe(file); r.on('error', function (err) { |