Skip to content

Commit 4a026aa

Browse files
committed
console/log updated/removed
1 parent 4cfc298 commit 4a026aa

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

lib/publish.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -246,7 +246,7 @@ Publish.prototype.init = function() {
246246
}
247247
});
248248
if (envNotPresent.length > 0) {
249-
return cb(`The following environments were not found in the stack!\n${envNotPresent}`);
249+
return cb(`The following environments were not found in the stack: ${JSON.stringify(envNotPresent)}!`);
250250
}
251251
return cb(null);
252252
}

lib/request.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,6 @@ var makeCall = module.exports = function(req, cb, RETRY) {
5555
}
5656
return request(req, function(err, response, body) {
5757
if (err) {
58-
log(error(err));
5958
return cb(err);
6059
}
6160
var timeDelay;

0 commit comments

Comments
 (0)