mirror of https://github.com/embarklabs/embark.git
Removed annoying [Object object] from the log that was appearing during contract compilation.
The warnings in object that were attempted to be logged were already being logged in a previous loop, so this was simply removed.
This commit is contained in:
parent
17b960e803
commit
4a9b52e5df
|
@ -75,7 +75,6 @@ class Solidity {
|
||||||
return callback(new Error("Solidity errors: " + output.errors[i].formattedMessage).message);
|
return callback(new Error("Solidity errors: " + output.errors[i].formattedMessage).message);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
self.logger.warn(output.errors.join('\n'));
|
|
||||||
}
|
}
|
||||||
callback(null, output);
|
callback(null, output);
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in New Issue