From 4a9b52e5df0c14116947c1d364129171ef2bf87e Mon Sep 17 00:00:00 2001 From: emizzle Date: Thu, 12 Apr 2018 13:47:34 +1000 Subject: [PATCH] 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. --- lib/modules/solidity/index.js | 1 - 1 file changed, 1 deletion(-) diff --git a/lib/modules/solidity/index.js b/lib/modules/solidity/index.js index c4db9dae3..244f6015f 100644 --- a/lib/modules/solidity/index.js +++ b/lib/modules/solidity/index.js @@ -75,7 +75,6 @@ class Solidity { return callback(new Error("Solidity errors: " + output.errors[i].formattedMessage).message); } } - self.logger.warn(output.errors.join('\n')); } callback(null, output); });