We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e44bd3a commit df7ff39Copy full SHA for df7ff39
lib/deploy.js
@@ -162,6 +162,11 @@ Deploy.prototype.deployAll = function(done) {
162
self.checkAndDeployContract(contract, null, callback);
163
},
164
function(err, results) {
165
+ if (err) {
166
+ self.logger.error("error deploying contracts");
167
+ self.logger.error(err.message);
168
+ self.logger.debug(err.stack);
169
+ }
170
self.logger.info("finished");
171
self.logger.trace(arguments);
172
done();
0 commit comments