mirror of https://github.com/embarklabs/embark.git
Remove unneeded logger.error
The pipeline and the deployer/compiler display the error themselves
This commit is contained in:
parent
6fc956b318
commit
e593ba5e42
|
@ -233,12 +233,7 @@ class EmbarkController {
|
||||||
callback(err, true);
|
callback(err, true);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
], function (err, canExit) {
|
], function (_err, canExit) {
|
||||||
if (err) {
|
|
||||||
engine.logger.error(err.message);
|
|
||||||
engine.logger.debug(err.stack);
|
|
||||||
}
|
|
||||||
|
|
||||||
// TODO: this should be moved out and determined somewhere else
|
// TODO: this should be moved out and determined somewhere else
|
||||||
if (canExit || !engine.config.contractsConfig.afterDeploy || !engine.config.contractsConfig.afterDeploy.length) {
|
if (canExit || !engine.config.contractsConfig.afterDeploy || !engine.config.contractsConfig.afterDeploy.length) {
|
||||||
process.exit();
|
process.exit();
|
||||||
|
|
Loading…
Reference in New Issue