From 4e3587305785f48c9e0a1cccb46954d7153fb2b6 Mon Sep 17 00:00:00 2001 From: Einar Egilsson Date: Wed, 18 Mar 2020 09:54:56 +0000 Subject: [PATCH] Log param --- beanstalk-deploy.js | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/beanstalk-deploy.js b/beanstalk-deploy.js index b709d40..d945318 100755 --- a/beanstalk-deploy.js +++ b/beanstalk-deploy.js @@ -261,14 +261,14 @@ function main() { console.log(' ***** Input parameters were: ***** '); - console.log(' Application: ' + application); - console.log(' Environment: ' + environmentName); - console.log(' Version Label: ' + versionLabel); - console.log(' AWS Region: ' + awsApiRequest.region); - console.log(' File: ' + file); - console.log(' AWS Access Key: ' + awsApiRequest.accessKey.length + ' characters long, starts with ' + awsApiRequest.accessKey.charAt(0)); - console.log(' AWS Secret Key: ' + awsApiRequest.secretKey.length + ' characters long, starts with ' + awsApiRequest.secretKey.charAt(0)); - + console.log(' Application: ' + application); + console.log(' Environment: ' + environmentName); + console.log(' Version Label: ' + versionLabel); + console.log(' AWS Region: ' + awsApiRequest.region); + console.log(' File: ' + file); + console.log(' AWS Access Key: ' + awsApiRequest.accessKey.length + ' characters long, starts with ' + awsApiRequest.accessKey.charAt(0)); + console.log(' AWS Secret Key: ' + awsApiRequest.secretKey.length + ' characters long, starts with ' + awsApiRequest.secretKey.charAt(0)); + console.log(' Recovery wait time: ' + waitForRecoverySeconds); getApplicationVersion(application, versionLabel).then(result => { expect(200, result);