Merge pull request #358 from embark-framework/bug_fix/annoying-object-in-log

Removed annoying [Object object] from the log that was appearing duri…
This commit is contained in:
Iuri Matias 2018-04-12 17:03:59 -04:00 committed by GitHub
commit c219aafd6a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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);
});