Skip to content

Commit

Permalink
Merge pull request #20 from ember-cli-deploy/verbose-support
Browse files Browse the repository at this point in the history
Update to use new verbose option for logging
  • Loading branch information
lukemelia committed Oct 25, 2015
2 parents ce4896d + f25d592 commit 0aaab46
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,10 @@ module.exports = {
plugin: this
});

this.log('creating revision data using `' + type + '`');
this.log('creating revision data using `' + type + '`', { verbose: true });
return dataGenerator.generate()
.then(function(data) {
self.log('generated revision data for revision: `' + data.revisionKey + '`');
self.log('generated revision data for revision: `' + data.revisionKey + '`', { verbose: true });
return data;
})
.then(function(data) {
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
"chalk": "^1.0.0",
"core-object": "^1.1.0",
"ember-cli-babel": "^5.0.0",
"ember-cli-deploy-plugin": "0.1.3",
"ember-cli-deploy-plugin": "0.2.0",
"git-repo-info": "^1.1.2",
"minimatch": "^2.0.4",
"rsvp": "^3.0.18"
Expand Down
1 change: 1 addition & 0 deletions tests/unit/index-nodetest.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ describe('the index', function() {
beforeEach(function() {
subject = require('../../index');
mockUi = {
verbose: true,
messages: [],
write: function() { },
writeLine: function(message) {
Expand Down

0 comments on commit 0aaab46

Please sign in to comment.