Skip to content

Commit 559b5e4

Browse files
committed
Update to use new verbose option for logging
1 parent ab02ddb commit 559b5e4

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ module.exports = {
4848
allowOverwrite: allowOverwrite
4949
};
5050

51-
this.log('preparing to upload revision to S3 bucket `' + bucket + '`');
51+
this.log('preparing to upload revision to S3 bucket `' + bucket + '`', { verbose: true });
5252

5353
var s3 = new S3({ plugin: this });
5454
return s3.upload(options);
@@ -67,7 +67,7 @@ module.exports = {
6767
revisionKey: revisionKey,
6868
};
6969

70-
this.log('preparing to activate `' + revisionKey + '`');
70+
this.log('preparing to activate `' + revisionKey + '`', { verbose: true });
7171

7272
var s3 = new S3({ plugin: this });
7373
return s3.activate(options);

lib/s3.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ module.exports = CoreObject.extend({
5959
.then(function(fileContents) {
6060
params.Body = fileContents;
6161
return putObject(params).then(function() {
62-
plugin.log('✔ ' + key);
62+
plugin.log('✔ ' + key, { verbose: true });
6363
});
6464
});
6565
},

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949
"aws-sdk": "^2.1.48",
5050
"core-object": "^1.1.0",
5151
"ember-cli-babel": "^5.1.3",
52-
"ember-cli-deploy-plugin": "^0.1.3"
52+
"ember-cli-deploy-plugin": "0.2.0"
5353
},
5454
"ember-addon": {
5555
"configPath": "tests/dummy/config"

0 commit comments

Comments
 (0)